Gen JavaDoc for all but scala
This commit is contained in:
@@ -108,19 +108,23 @@
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!-- <plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${javaDocPlugin.version}</version>
|
||||
<plugin>
|
||||
<groupId>org.jetbrains.dokka</groupId>
|
||||
<artifactId>dokka-maven-plugin</artifactId>
|
||||
<version>2.0.0</version>
|
||||
<configuration>
|
||||
<reportUndocumented>true</reportUndocumented>
|
||||
<includes>${project.basedir}/src/main/module-info.md</includes>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
<goal>javadocJar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin> -->
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
||||
@@ -26,6 +26,10 @@ object Configuration {
|
||||
/** The connection string for the JDBC connection */
|
||||
@JvmStatic
|
||||
var connectionString: String? = null
|
||||
/**
|
||||
* Set a value for the connection string
|
||||
* @param value The connection string to set
|
||||
*/
|
||||
set(value) {
|
||||
field = value
|
||||
dialectValue = if (value.isNullOrBlank()) null else Dialect.deriveFromConnectionString(value)
|
||||
|
||||
@@ -9,6 +9,9 @@ import java.sql.SQLException
|
||||
import java.util.*
|
||||
import kotlin.jvm.Throws
|
||||
|
||||
/**
|
||||
* Functions to run custom queries
|
||||
*/
|
||||
object Custom {
|
||||
|
||||
/**
|
||||
|
||||
@@ -7,6 +7,9 @@ import java.sql.PreparedStatement
|
||||
import java.sql.ResultSet
|
||||
import java.sql.SQLException
|
||||
|
||||
/**
|
||||
* Functions to create results from queries
|
||||
*/
|
||||
object Results {
|
||||
|
||||
/**
|
||||
|
||||
19
src/core/src/main/module-info.md
Normal file
19
src/core/src/main/module-info.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# Module core
|
||||
|
||||
This module contains configuration and support files for the document store API, as well as an implementation suitable for any JVM language.
|
||||
|
||||
# Package solutions.bitbadger.documents
|
||||
|
||||
Configuration and other items to support the document store API
|
||||
|
||||
# Package solutions.bitbadger.documents.query
|
||||
|
||||
Functions to create document manipulation queries
|
||||
|
||||
# Package solutions.bitbadger.documents.java
|
||||
|
||||
A Java-focused implementation of the document store API
|
||||
|
||||
# Package solutions.bitbadger.documents.java.extensions
|
||||
|
||||
Extensions on the Java `Connection` object for document manipulation
|
||||
Reference in New Issue
Block a user