Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/jacoco_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
with:
token: '${{ secrets.GITHUB_TOKEN }}'
paths: |
balta/target/**/jacoco/report/jacoco.xml
balta/target/**/jacoco-report/jacoco.xml
sensitivity: "detail"
comment-mode: 'single'
min-coverage-overall: ${{ env.coverage-overall }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,4 @@ object DBTestSuite {
)
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ object DBConnection {
implicit def dbConnectionToJdbcConnection(in: DBConnection): Connection = in.connection

}

Original file line number Diff line number Diff line change
Expand Up @@ -193,3 +193,4 @@ object DBFunction {
params: ParamsMap = ListMap.empty
) extends DBFunction(functionName, params)
}

Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ trait DBQuerySupport {
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -254,3 +254,4 @@ case class DBTable(tableName: String) extends DBQuerySupport{
}.mkString(" AND ")
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,4 @@ class QueryResult(resultSet: ResultSet) extends Iterator[QueryResultRow] {
*/
def noMore: Boolean = !hasNext
}

Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,4 @@ object QueryResultRow {
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ case class ConnectionInfo(
password: String,
persistData: Boolean
)

Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,4 @@ object Params {
override val keys: Option[List[String]] = None
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ object MapImplicits {
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ object OptionImplicits {
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,4 @@ object QueryResultRowImplicits {
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ object SimpleJsonString {
}
}


Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ object Postgres {

}
}

Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ object PostgresQueryParamValue {


}

Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,4 @@ object QueryParamType {
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ object QueryParamValue {
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ package za.co.absa.db.mag.exceptions
* Exception thrown when a naming convention is not found for a given string
*/
case class NamingException(message: String) extends Exception(message)

Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@ object LettersCase {
override def convert(s: String): String = s.toUpperCase
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,4 @@ trait NamingConvention {
*/
def stringPerConvention(original: String): String
}

Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ object AsIsNaming {
implicit val namingConvention: NamingConvention = new AsIsNaming(AsIs)
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ object ExplicitNamingRequired {
implicit val namingConvention: NamingConvention = new ExplicitNamingRequired()
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ object MapBasedNaming {
new MapBasedNaming(actualNames, keysLettersCase)
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,4 @@ object SnakeCaseNaming {
implicit val namingConvention: NamingConvention = new SnakeCaseNaming(LowerCase)
}
}

2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ ThisBuild / scalaVersion := scala212
ThisBuild / versionScheme := Some("early-semver")

lazy val balta = (project in file("balta"))
.enablePlugins(JacocoFilterPlugin)
.settings(
name := "balta",
scalacOptions ++= Seq(
Expand All @@ -38,4 +39,3 @@ lazy val balta = (project in file("balta"))
crossScalaVersions := supportedScalaVersions,
libraryDependencies ++= libDependencies,
)
.enablePlugins(FilteredJacocoAgentPlugin)
Loading
Loading