Compare commits
3 Commits
c2c03e415e
...
bfd562bc60
| Author | SHA1 | Date | |
|---|---|---|---|
| bfd562bc60 | |||
| 4fb85a52e4 | |||
| e64352f54c |
92
.gitignore
vendored
92
.gitignore
vendored
@ -7,18 +7,9 @@
|
|||||||
*.nar
|
*.nar
|
||||||
hs_err_pid*
|
hs_err_pid*
|
||||||
|
|
||||||
# Maven
|
# Gradle
|
||||||
target/
|
build/
|
||||||
pom.xml.tag
|
.gradle
|
||||||
pom.xml.releaseBackup
|
|
||||||
pom.xml.versionsBackup
|
|
||||||
pom.xml.next
|
|
||||||
pom.xml.bak
|
|
||||||
release.properties
|
|
||||||
dependency-reduced-pom.xml
|
|
||||||
buildNumber.properties
|
|
||||||
.mvn/timing.properties
|
|
||||||
.mvn/wrapper/maven-wrapper.jar
|
|
||||||
|
|
||||||
# IntelliJ
|
# IntelliJ
|
||||||
out/
|
out/
|
||||||
@ -28,11 +19,8 @@ out/
|
|||||||
*.ipr
|
*.ipr
|
||||||
*.iws
|
*.iws
|
||||||
|
|
||||||
# Vue
|
|
||||||
node_modules
|
|
||||||
/dist
|
|
||||||
|
|
||||||
# Local env files
|
# Local env files
|
||||||
|
.env
|
||||||
.env.local
|
.env.local
|
||||||
.env.*.local
|
.env.*.local
|
||||||
|
|
||||||
@ -49,85 +37,13 @@ pids
|
|||||||
*.seed
|
*.seed
|
||||||
*.pid.lock
|
*.pid.lock
|
||||||
|
|
||||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
||||||
lib-cov
|
|
||||||
|
|
||||||
# Coverage directory used by tools like istanbul
|
|
||||||
coverage
|
|
||||||
|
|
||||||
# nyc test coverage
|
|
||||||
.nyc_output
|
|
||||||
|
|
||||||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
||||||
.grunt
|
|
||||||
|
|
||||||
# Bower dependency directory (https://bower.io/)
|
|
||||||
bower_components
|
|
||||||
|
|
||||||
# node-waf configuration
|
|
||||||
.lock-wscript
|
|
||||||
|
|
||||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
||||||
build/Release
|
|
||||||
|
|
||||||
# Dependency directories
|
# Dependency directories
|
||||||
node_modules/
|
node_modules/
|
||||||
jspm_packages/
|
jspm_packages/
|
||||||
|
|
||||||
# TypeScript v1 declaration files
|
|
||||||
typings/
|
|
||||||
|
|
||||||
# Optional npm cache directory
|
|
||||||
.npm
|
|
||||||
|
|
||||||
# Optional eslint cache
|
|
||||||
.eslintcache
|
|
||||||
|
|
||||||
# Optional REPL history
|
|
||||||
.node_repl_history
|
|
||||||
|
|
||||||
# Output of 'npm pack'
|
|
||||||
*.tgz
|
|
||||||
|
|
||||||
# Yarn Integrity file
|
# Yarn Integrity file
|
||||||
.yarn-integrity
|
.yarn-integrity
|
||||||
|
|
||||||
# dotenv environment variables file
|
|
||||||
.env
|
|
||||||
|
|
||||||
# parcel-bundler cache (https://parceljs.org/)
|
|
||||||
.cache
|
|
||||||
|
|
||||||
# next.js build output
|
|
||||||
.next
|
|
||||||
|
|
||||||
# nuxt.js build output
|
|
||||||
.nuxt
|
|
||||||
|
|
||||||
# Nuxt generate
|
|
||||||
dist
|
|
||||||
|
|
||||||
# vuepress build output
|
|
||||||
.vuepress/dist
|
|
||||||
|
|
||||||
# Serverless directories
|
|
||||||
.serverless
|
|
||||||
|
|
||||||
# IDE / Editor
|
|
||||||
.idea
|
|
||||||
|
|
||||||
# Service worker
|
|
||||||
sw.*
|
|
||||||
*.private.env.json
|
|
||||||
|
|
||||||
# Certificates
|
|
||||||
data/
|
|
||||||
letsencrypt/
|
|
||||||
|
|
||||||
# generated resources
|
|
||||||
simplenotes-app/src/main/resources/css-manifest.json
|
|
||||||
simplenotes-app/src/main/resources/static/styles*
|
|
||||||
|
|
||||||
# h2 db
|
# h2 db
|
||||||
*.db
|
*.db
|
||||||
|
|
||||||
|
|||||||
28
Dockerfile
28
Dockerfile
@ -1,29 +1,3 @@
|
|||||||
FROM maven:3.6.3-jdk-14 as builder
|
|
||||||
|
|
||||||
WORKDIR /tmp
|
|
||||||
|
|
||||||
# Cache dependencies
|
|
||||||
COPY pom.xml .
|
|
||||||
COPY simplenotes-test-resources/pom.xml simplenotes-test-resources/pom.xml
|
|
||||||
COPY simplenotes-types/pom.xml simplenotes-types/pom.xml
|
|
||||||
COPY simplenotes-config/pom.xml simplenotes-config/pom.xml
|
|
||||||
COPY simplenotes-persistance/pom.xml simplenotes-persistance/pom.xml
|
|
||||||
COPY simplenotes-search/pom.xml simplenotes-search/pom.xml
|
|
||||||
COPY simplenotes-domain/pom.xml simplenotes-domain/pom.xml
|
|
||||||
COPY simplenotes-app/pom.xml simplenotes-app/pom.xml
|
|
||||||
|
|
||||||
RUN mvn verify clean --fail-never
|
|
||||||
|
|
||||||
COPY simplenotes-test-resources/src simplenotes-test-resources/src
|
|
||||||
COPY simplenotes-types/src simplenotes-types/src
|
|
||||||
COPY simplenotes-config/src simplenotes-config/src
|
|
||||||
COPY simplenotes-persistance/src simplenotes-persistance/src
|
|
||||||
COPY simplenotes-search/src simplenotes-search/src
|
|
||||||
COPY simplenotes-domain/src simplenotes-domain/src
|
|
||||||
COPY simplenotes-app/src simplenotes-app/src
|
|
||||||
|
|
||||||
RUN mvn -Dstyle.color=always package
|
|
||||||
|
|
||||||
FROM openjdk:14-alpine as jdkbuilder
|
FROM openjdk:14-alpine as jdkbuilder
|
||||||
|
|
||||||
RUN apk add --no-cache binutils
|
RUN apk add --no-cache binutils
|
||||||
@ -46,8 +20,8 @@ RUN chown -R $APPLICATION_USER /app
|
|||||||
|
|
||||||
USER $APPLICATION_USER
|
USER $APPLICATION_USER
|
||||||
|
|
||||||
COPY --from=builder /tmp/simplenotes-app/target/simplenotes-app-*.jar /app/simplenotes.jar
|
|
||||||
COPY --from=jdkbuilder /myjdk /myjdk
|
COPY --from=jdkbuilder /myjdk /myjdk
|
||||||
|
COPY simplenotes-app/build/libs/app-*-all.jar /app/simplenotes.jar
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
CMD ["/myjdk/bin/java", "-server", "-XX:+UnlockExperimentalVMOptions", "-Xms64m", "-Xmx256m", "-XX:+UseG1GC", "-XX:MaxGCPauseMillis=100", "-XX:+UseStringDeduplication", "-jar", "simplenotes.jar"]
|
CMD ["/myjdk/bin/java", "-server", "-XX:+UnlockExperimentalVMOptions", "-Xms64m", "-Xmx256m", "-XX:+UseG1GC", "-XX:MaxGCPauseMillis=100", "-XX:+UseStringDeduplication", "-jar", "simplenotes.jar"]
|
||||||
|
|||||||
1
build.gradle.properties
Normal file
1
build.gradle.properties
Normal file
@ -0,0 +1 @@
|
|||||||
|
org.gradle.caching=true
|
||||||
15
buildSrc/build.gradle.kts
Normal file
15
buildSrc/build.gradle.kts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
plugins {
|
||||||
|
`kotlin-dsl`
|
||||||
|
kotlin("jvm") version "1.4.10"
|
||||||
|
id("com.github.johnrengelman.shadow") version "6.1.0"
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
gradlePluginPortal()
|
||||||
|
maven { setUrl("https://kotlin.bintray.com/kotlinx") }
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10")
|
||||||
|
implementation("com.github.jengelman.gradle.plugins:shadow:6.1.0")
|
||||||
|
}
|
||||||
52
buildSrc/src/main/kotlin/be/simplenotes/CssTask.kt
Normal file
52
buildSrc/src/main/kotlin/be/simplenotes/CssTask.kt
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
package be.simplenotes
|
||||||
|
|
||||||
|
import org.gradle.api.DefaultTask
|
||||||
|
import org.gradle.api.GradleException
|
||||||
|
import org.gradle.api.tasks.InputDirectory
|
||||||
|
import org.gradle.api.tasks.OutputDirectory
|
||||||
|
import org.gradle.api.tasks.TaskAction
|
||||||
|
import java.io.File
|
||||||
|
import java.lang.ProcessBuilder.Redirect.PIPE
|
||||||
|
import java.util.concurrent.TimeUnit
|
||||||
|
import kotlin.concurrent.thread
|
||||||
|
|
||||||
|
open class CssTask : DefaultTask() {
|
||||||
|
|
||||||
|
private val root = project.file(".").parent
|
||||||
|
|
||||||
|
@get:InputDirectory
|
||||||
|
val templatesDir = File(root, "simplenotes-views/src/main/kotlin/be/simplenotes/views")
|
||||||
|
|
||||||
|
@get:InputDirectory
|
||||||
|
val postCssDir = File(project.rootDir, "css/src")
|
||||||
|
|
||||||
|
@get:OutputDirectory
|
||||||
|
val outputRootDir = File(project.buildDir, "generated-resources/css")
|
||||||
|
|
||||||
|
private val yarnRoot = File(project.rootDir, "css")
|
||||||
|
private val cssIndex = File(postCssDir, "styles.pcss")
|
||||||
|
|
||||||
|
private val cssOutput = File(outputRootDir, "static/styles.css")
|
||||||
|
private val manifestOutput = File(outputRootDir, "css-manifest.json")
|
||||||
|
|
||||||
|
@TaskAction
|
||||||
|
fun generateCss() {
|
||||||
|
// TODO: auto yarn install ?
|
||||||
|
|
||||||
|
outputRootDir.listFiles()?.let { it.forEach { it.delete() } }
|
||||||
|
|
||||||
|
ProcessBuilder("yarn", "run", "postcss", "build", "$cssIndex", "--output", "$cssOutput")
|
||||||
|
.apply { environment()["MANIFEST"] = "$manifestOutput" }
|
||||||
|
.redirectOutput(PIPE)
|
||||||
|
.redirectError(PIPE)
|
||||||
|
.directory(yarnRoot)
|
||||||
|
.start()
|
||||||
|
.apply {
|
||||||
|
thread { inputStream.use { it.copyTo(System.out) } }
|
||||||
|
thread { errorStream.use { it.copyTo(System.out) } }
|
||||||
|
waitFor(30, TimeUnit.SECONDS)
|
||||||
|
if (exitValue() != 0) throw GradleException(":/")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
42
buildSrc/src/main/kotlin/be/simplenotes/Libs.kt
Normal file
42
buildSrc/src/main/kotlin/be/simplenotes/Libs.kt
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
@file:Suppress("SpellCheckingInspection")
|
||||||
|
|
||||||
|
package be.simplenotes
|
||||||
|
|
||||||
|
object Libs {
|
||||||
|
const val arrowCore = "io.arrow-kt:arrow-core:0.11.0"
|
||||||
|
const val commonsCompress = "org.apache.commons:commons-compress:1.20"
|
||||||
|
const val flexmark = "com.vladsch.flexmark:flexmark:0.62.2"
|
||||||
|
const val flexmarkGfmTasklist = "com.vladsch.flexmark:flexmark-ext-gfm-tasklist:0.62.2"
|
||||||
|
const val flywayCore = "org.flywaydb:flyway-core:6.5.4"
|
||||||
|
const val h2 = "com.h2database:h2:1.4.200"
|
||||||
|
const val hikariCP = "com.zaxxer:HikariCP:3.4.3"
|
||||||
|
const val http4kCore = "org.http4k:http4k-core:3.268.0"
|
||||||
|
const val javaJwt = "com.auth0:java-jwt:3.10.3"
|
||||||
|
const val javaxServlet = "javax.servlet:javax.servlet-api:4.0.1"
|
||||||
|
const val jbcrypt = "org.mindrot:jbcrypt:0.4"
|
||||||
|
const val jettyServer = "org.eclipse.jetty:jetty-server:9.4.32.v20200930"
|
||||||
|
const val jettyServlet = "org.eclipse.jetty:jetty-servlet:9.4.32.v20200930"
|
||||||
|
const val koinCore = "org.koin:koin-core:2.1.6"
|
||||||
|
const val konform = "io.konform:konform-jvm:0.2.0"
|
||||||
|
const val kotlinxHtml = "org.jetbrains.kotlinx:kotlinx-html-jvm:0.7.1"
|
||||||
|
const val kotlinxSerializationJson = "org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0"
|
||||||
|
const val ktormCore = "me.liuwj.ktorm:ktorm-core:3.0.0"
|
||||||
|
const val ktormMysql = "me.liuwj.ktorm:ktorm-support-mysql:3.0.0"
|
||||||
|
const val logbackClassic = "ch.qos.logback:logback-classic:1.2.3"
|
||||||
|
const val luceneAnalyzersCommon = "org.apache.lucene:lucene-analyzers-common:8.6.1"
|
||||||
|
const val luceneCore = "org.apache.lucene:lucene-core:8.6.1"
|
||||||
|
const val luceneQueryParser = "org.apache.lucene:lucene-queryparser:8.6.1"
|
||||||
|
const val mapstruct = "org.mapstruct:mapstruct:1.4.1.Final"
|
||||||
|
const val mapstructProcessor = "org.mapstruct:mapstruct-processor:1.4.1.Final"
|
||||||
|
const val mariadbClient = "org.mariadb.jdbc:mariadb-java-client:2.6.2"
|
||||||
|
const val owaspHtmlSanitizer = "com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:20200713.1"
|
||||||
|
const val prettytime ="org.ocpsoft.prettytime:prettytime:4.0.5.Final"
|
||||||
|
const val slf4jApi = "org.slf4j:slf4j-api:1.7.25"
|
||||||
|
const val snakeyaml = "org.yaml:snakeyaml:1.26"
|
||||||
|
|
||||||
|
const val assertJ = "org.assertj:assertj-core:3.16.1"
|
||||||
|
const val hamkrest = "com.natpryce:hamkrest:1.7.0.3"
|
||||||
|
const val http4kTestingHamkrest = "org.http4k:http4k-testing-hamkrest:3.268.0"
|
||||||
|
const val junit = "org.junit.jupiter:junit-jupiter:5.6.2"
|
||||||
|
const val mockk = "io.mockk:mockk:1.10.0"
|
||||||
|
}
|
||||||
15
buildSrc/src/main/kotlin/be/simplenotes/app-css.gradle.kts
Normal file
15
buildSrc/src/main/kotlin/be/simplenotes/app-css.gradle.kts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
package be.simplenotes
|
||||||
|
|
||||||
|
import org.gradle.kotlin.dsl.register
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
java apply false
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.register<CssTask>("css")
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
val main by getting
|
||||||
|
val root = file("$buildDir/generated-resources/css")
|
||||||
|
main.resources.srcDir(root)
|
||||||
|
}
|
||||||
@ -0,0 +1,39 @@
|
|||||||
|
package be.simplenotes
|
||||||
|
|
||||||
|
import java.util.concurrent.TimeUnit.MINUTES
|
||||||
|
import kotlin.concurrent.thread
|
||||||
|
|
||||||
|
fun runCommand(vararg args: String, onError: () -> Unit) {
|
||||||
|
logging.captureStandardOutput(LogLevel.INFO)
|
||||||
|
ProcessBuilder(*args)
|
||||||
|
.redirectOutput(ProcessBuilder.Redirect.PIPE)
|
||||||
|
.redirectError(ProcessBuilder.Redirect.PIPE)
|
||||||
|
.directory(rootProject.projectDir)
|
||||||
|
.start()
|
||||||
|
.apply {
|
||||||
|
thread { inputStream.use { it.copyTo(System.out) } }
|
||||||
|
thread { errorStream.use { it.copyTo(System.out) } }
|
||||||
|
waitFor(2, MINUTES)
|
||||||
|
if (exitValue() != 0) onError()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.create("dockerBuild") {
|
||||||
|
dependsOn("package")
|
||||||
|
|
||||||
|
doLast {
|
||||||
|
runCommand("docker", "build", "-t", "hubv/simplenotes:latest", ".") {
|
||||||
|
throw GradleException("Docker build failed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.create("dockerPush") {
|
||||||
|
dependsOn("dockerBuild")
|
||||||
|
|
||||||
|
doLast {
|
||||||
|
runCommand("docker", "push", "hubv/simplenotes:latest") {
|
||||||
|
throw GradleException("Docker Push failed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,47 @@
|
|||||||
|
package be.simplenotes
|
||||||
|
|
||||||
|
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("com.github.johnrengelman.shadow")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<ShadowJar> {
|
||||||
|
|
||||||
|
archiveBaseName.set("app")
|
||||||
|
manifest.attributes["Main-Class"] = "be.simplenotes.app.SimpleNotesKt"
|
||||||
|
|
||||||
|
mergeServiceFiles()
|
||||||
|
|
||||||
|
// minimize()
|
||||||
|
|
||||||
|
// include("org.mariadb.jdbc:mariadb-java-client")
|
||||||
|
// include("com.h2database:h2")
|
||||||
|
// include("org.jetbrains.kotlin:kotlin-reflect")
|
||||||
|
// include("org.eclipse.jetty:*")
|
||||||
|
// include("org.apache.lucene:*")
|
||||||
|
// include("org.ocpsoft.prettytime:prettytime")
|
||||||
|
|
||||||
|
File(rootProject.projectDir, "buildSrc/src/main/resources/exclusions")
|
||||||
|
.listFiles()!!
|
||||||
|
.flatMap {
|
||||||
|
it.readLines()
|
||||||
|
.asSequence()
|
||||||
|
.map { it.trim() }
|
||||||
|
.filterNot { it.isBlank() }
|
||||||
|
.filterNot { it.startsWith("#") }
|
||||||
|
.asIterable()
|
||||||
|
}.forEach { exclude(it) }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.create("package") {
|
||||||
|
rootProject.subprojects.forEach { dependsOn(":${it.name}:test") }
|
||||||
|
|
||||||
|
dependsOn("shadowJar")
|
||||||
|
dependsOn("css")
|
||||||
|
|
||||||
|
doLast {
|
||||||
|
println("SimpleNotes Packaged !")
|
||||||
|
}
|
||||||
|
}
|
||||||
55
buildSrc/src/main/kotlin/be/simplenotes/base.gradle.kts
Normal file
55
buildSrc/src/main/kotlin/be/simplenotes/base.gradle.kts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
package be.simplenotes
|
||||||
|
|
||||||
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
java
|
||||||
|
kotlin("jvm")
|
||||||
|
`java-library`
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenLocal()
|
||||||
|
mavenCentral()
|
||||||
|
jcenter()
|
||||||
|
maven { url = uri("https://dl.bintray.com/arrow-kt/arrow-kt/") }
|
||||||
|
maven { url = uri("https://kotlin.bintray.com/kotlinx") }
|
||||||
|
}
|
||||||
|
|
||||||
|
group = "be.simplenotes"
|
||||||
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(kotlin("stdlib-jdk8"))
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<Test> {
|
||||||
|
useJUnitPlatform()
|
||||||
|
}
|
||||||
|
|
||||||
|
java {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_14
|
||||||
|
targetCompatibility = JavaVersion.VERSION_14
|
||||||
|
}
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
val test by getting
|
||||||
|
test.resources.srcDir("${rootProject.projectDir}/simplenotes-test-resources/src/test/resources")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<KotlinCompile> {
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = "14"
|
||||||
|
javaParameters = true
|
||||||
|
freeCompilerArgs = listOf(
|
||||||
|
"-Xinline-classes",
|
||||||
|
"-Xno-param-assertions",
|
||||||
|
"-Xno-call-assertions",
|
||||||
|
"-Xno-receiver-assertions"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<JavaCompile> {
|
||||||
|
options.encoding = "UTF-8"
|
||||||
|
}
|
||||||
@ -0,0 +1,14 @@
|
|||||||
|
META-INF/maven/**
|
||||||
|
META-INF/proguard/**
|
||||||
|
META-INF/*.kotlin_module
|
||||||
|
META-INF/DEPENDENCIES*
|
||||||
|
META-INF/NOTICE*
|
||||||
|
META-INF/LICENSE*
|
||||||
|
LICENSE*
|
||||||
|
META-INF/README*
|
||||||
|
META-INF/native-image/**
|
||||||
|
|
||||||
|
# Jetty
|
||||||
|
about.html
|
||||||
|
jetty-dir.css
|
||||||
|
server-ssl-cert.pem
|
||||||
261
buildSrc/src/main/resources/exclusions/guava.txt
Normal file
261
buildSrc/src/main/resources/exclusions/guava.txt
Normal file
@ -0,0 +1,261 @@
|
|||||||
|
com/google/common/util/**
|
||||||
|
com/google/common/eventbus/**
|
||||||
|
com/google/common/reflect/**
|
||||||
|
com/google/common/escape/**
|
||||||
|
com/google/common/graph/**
|
||||||
|
com/google/common/html/**
|
||||||
|
com/google/common/hash/**
|
||||||
|
com/google/common/xml/**
|
||||||
|
com/google/common/io/**
|
||||||
|
com/google/common/cache/**
|
||||||
|
com/google/common/net/**
|
||||||
|
|
||||||
|
# Collections
|
||||||
|
com/google/common/collect/AbstractBiMap$1.class
|
||||||
|
com/google/common/collect/AbstractBiMap$BiMapEntry.class
|
||||||
|
com/google/common/collect/AbstractBiMap$EntrySet.class
|
||||||
|
com/google/common/collect/AbstractBiMap$Inverse.class
|
||||||
|
com/google/common/collect/AbstractBiMap$KeySet.class
|
||||||
|
com/google/common/collect/AbstractBiMap$ValueSet.class
|
||||||
|
com/google/common/collect/AbstractBiMap.class
|
||||||
|
com/google/common/collect/AbstractSortedKeySortedSetMultimap.class
|
||||||
|
com/google/common/collect/AbstractSortedMultiset$1DescendingMultisetImpl.class
|
||||||
|
com/google/common/collect/AbstractSortedMultiset.class
|
||||||
|
com/google/common/collect/AbstractTable$1.class
|
||||||
|
com/google/common/collect/AbstractTable$CellSet.class
|
||||||
|
com/google/common/collect/AbstractTable$Values.class
|
||||||
|
com/google/common/collect/AbstractTable.class
|
||||||
|
com/google/common/collect/ArrayListMultimap.class
|
||||||
|
com/google/common/collect/ArrayListMultimapGwtSerializationDependencies.class
|
||||||
|
com/google/common/collect/ArrayTable$1.class
|
||||||
|
com/google/common/collect/ArrayTable$2.class
|
||||||
|
com/google/common/collect/ArrayTable$3.class
|
||||||
|
com/google/common/collect/ArrayTable$ArrayMap$1.class
|
||||||
|
com/google/common/collect/ArrayTable$ArrayMap$2.class
|
||||||
|
com/google/common/collect/ArrayTable$ArrayMap.class
|
||||||
|
com/google/common/collect/ArrayTable$Column.class
|
||||||
|
com/google/common/collect/ArrayTable$ColumnMap.class
|
||||||
|
com/google/common/collect/ArrayTable$Row.class
|
||||||
|
com/google/common/collect/ArrayTable$RowMap.class
|
||||||
|
com/google/common/collect/ArrayTable.class
|
||||||
|
com/google/common/collect/ClassToInstanceMap.class
|
||||||
|
com/google/common/collect/CompactHashMap$1.class
|
||||||
|
com/google/common/collect/CompactHashMap$2.class
|
||||||
|
com/google/common/collect/CompactHashMap$3.class
|
||||||
|
com/google/common/collect/CompactHashMap$EntrySetView.class
|
||||||
|
com/google/common/collect/CompactHashMap$Itr.class
|
||||||
|
com/google/common/collect/CompactHashMap$KeySetView.class
|
||||||
|
com/google/common/collect/CompactHashMap$MapEntry.class
|
||||||
|
com/google/common/collect/CompactHashMap$ValuesView.class
|
||||||
|
com/google/common/collect/CompactHashMap.class
|
||||||
|
com/google/common/collect/CompactHashSet$1.class
|
||||||
|
com/google/common/collect/CompactHashSet.class
|
||||||
|
com/google/common/collect/CompactLinkedHashMap$1EntrySetImpl.class
|
||||||
|
com/google/common/collect/CompactLinkedHashMap$1KeySetImpl.class
|
||||||
|
com/google/common/collect/CompactLinkedHashMap$1ValuesImpl.class
|
||||||
|
com/google/common/collect/CompactLinkedHashMap.class
|
||||||
|
com/google/common/collect/CompactLinkedHashSet.class
|
||||||
|
com/google/common/collect/Comparators.class
|
||||||
|
com/google/common/collect/ComputationException.class
|
||||||
|
com/google/common/collect/ConcurrentHashMultiset$1.class
|
||||||
|
com/google/common/collect/ConcurrentHashMultiset$2.class
|
||||||
|
com/google/common/collect/ConcurrentHashMultiset$3.class
|
||||||
|
com/google/common/collect/ConcurrentHashMultiset$EntrySet.class
|
||||||
|
com/google/common/collect/ConcurrentHashMultiset$FieldSettersHolder.class
|
||||||
|
com/google/common/collect/ConcurrentHashMultiset.class
|
||||||
|
com/google/common/collect/DenseImmutableTable$1.class
|
||||||
|
com/google/common/collect/DenseImmutableTable$Column.class
|
||||||
|
com/google/common/collect/DenseImmutableTable$ColumnMap.class
|
||||||
|
com/google/common/collect/DenseImmutableTable$ImmutableArrayMap$1.class
|
||||||
|
com/google/common/collect/DenseImmutableTable$ImmutableArrayMap.class
|
||||||
|
com/google/common/collect/DenseImmutableTable$Row.class
|
||||||
|
com/google/common/collect/DenseImmutableTable$RowMap.class
|
||||||
|
com/google/common/collect/DenseImmutableTable.class
|
||||||
|
com/google/common/collect/DescendingImmutableSortedMultiset.class
|
||||||
|
com/google/common/collect/DescendingMultiset$1EntrySetImpl.class
|
||||||
|
com/google/common/collect/DescendingMultiset.class
|
||||||
|
com/google/common/collect/EnumBiMap.class
|
||||||
|
com/google/common/collect/EnumHashBiMap.class
|
||||||
|
com/google/common/collect/EnumMultiset$1.class
|
||||||
|
com/google/common/collect/EnumMultiset$2$1.class
|
||||||
|
com/google/common/collect/EnumMultiset$2.class
|
||||||
|
com/google/common/collect/EnumMultiset$Itr.class
|
||||||
|
com/google/common/collect/EnumMultiset.class
|
||||||
|
com/google/common/collect/EvictingQueue.class
|
||||||
|
com/google/common/collect/ForwardingBlockingDeque.class
|
||||||
|
com/google/common/collect/ForwardingDeque.class
|
||||||
|
com/google/common/collect/ForwardingImmutableCollection.class
|
||||||
|
com/google/common/collect/ForwardingImmutableList.class
|
||||||
|
com/google/common/collect/ForwardingImmutableMap.class
|
||||||
|
com/google/common/collect/ForwardingImmutableSet.class
|
||||||
|
com/google/common/collect/ForwardingIterator.class
|
||||||
|
com/google/common/collect/ForwardingListIterator.class
|
||||||
|
com/google/common/collect/ForwardingListMultimap.class
|
||||||
|
com/google/common/collect/ForwardingNavigableMap$StandardDescendingMap$1.class
|
||||||
|
com/google/common/collect/ForwardingNavigableMap$StandardDescendingMap.class
|
||||||
|
com/google/common/collect/ForwardingNavigableMap$StandardNavigableKeySet.class
|
||||||
|
com/google/common/collect/ForwardingNavigableMap.class
|
||||||
|
com/google/common/collect/ForwardingQueue.class
|
||||||
|
com/google/common/collect/ForwardingSetMultimap.class
|
||||||
|
com/google/common/collect/ForwardingSortedMultiset$StandardDescendingMultiset.class
|
||||||
|
com/google/common/collect/ForwardingSortedMultiset$StandardElementSet.class
|
||||||
|
com/google/common/collect/ForwardingSortedMultiset.class
|
||||||
|
com/google/common/collect/ForwardingSortedSetMultimap.class
|
||||||
|
com/google/common/collect/ForwardingTable.class
|
||||||
|
com/google/common/collect/GeneralRange.class
|
||||||
|
com/google/common/collect/GwtTransient.class
|
||||||
|
com/google/common/collect/HashBasedTable$Factory.class
|
||||||
|
com/google/common/collect/HashBasedTable.class
|
||||||
|
com/google/common/collect/HashBiMap$1$MapEntry.class
|
||||||
|
com/google/common/collect/HashBiMap$1.class
|
||||||
|
com/google/common/collect/HashBiMap$BiEntry.class
|
||||||
|
com/google/common/collect/HashBiMap$Inverse$1$InverseEntry.class
|
||||||
|
com/google/common/collect/HashBiMap$Inverse$1.class
|
||||||
|
com/google/common/collect/HashBiMap$Inverse$InverseKeySet$1.class
|
||||||
|
com/google/common/collect/HashBiMap$Inverse$InverseKeySet.class
|
||||||
|
com/google/common/collect/HashBiMap$Inverse.class
|
||||||
|
com/google/common/collect/HashBiMap$InverseSerializedForm.class
|
||||||
|
com/google/common/collect/HashBiMap$Itr.class
|
||||||
|
com/google/common/collect/HashBiMap$KeySet$1.class
|
||||||
|
com/google/common/collect/HashBiMap$KeySet.class
|
||||||
|
com/google/common/collect/HashBiMap.class
|
||||||
|
com/google/common/collect/HashMultimap.class
|
||||||
|
com/google/common/collect/HashMultimapGwtSerializationDependencies.class
|
||||||
|
com/google/common/collect/ImmutableClassToInstanceMap$1.class
|
||||||
|
com/google/common/collect/ImmutableClassToInstanceMap$Builder.class
|
||||||
|
com/google/common/collect/ImmutableClassToInstanceMap.class
|
||||||
|
com/google/common/collect/ImmutableSortedMultiset$Builder.class
|
||||||
|
com/google/common/collect/ImmutableSortedMultiset$SerializedForm.class
|
||||||
|
com/google/common/collect/ImmutableSortedMultiset.class
|
||||||
|
com/google/common/collect/ImmutableSortedMultisetFauxverideShim.class
|
||||||
|
com/google/common/collect/ImmutableTable$1.class
|
||||||
|
com/google/common/collect/ImmutableTable$Builder.class
|
||||||
|
com/google/common/collect/ImmutableTable$CollectorState.class
|
||||||
|
com/google/common/collect/ImmutableTable$MutableCell.class
|
||||||
|
com/google/common/collect/ImmutableTable$SerializedForm.class
|
||||||
|
com/google/common/collect/ImmutableTable.class
|
||||||
|
com/google/common/collect/Interner.class
|
||||||
|
com/google/common/collect/Interners$1.class
|
||||||
|
com/google/common/collect/Interners$InternerBuilder.class
|
||||||
|
com/google/common/collect/Interners$InternerFunction.class
|
||||||
|
com/google/common/collect/Interners$InternerImpl.class
|
||||||
|
com/google/common/collect/Interners.class
|
||||||
|
com/google/common/collect/LinkedHashMultimap$1.class
|
||||||
|
com/google/common/collect/LinkedHashMultimap$ValueEntry.class
|
||||||
|
com/google/common/collect/LinkedHashMultimap$ValueSet$1.class
|
||||||
|
com/google/common/collect/LinkedHashMultimap$ValueSet.class
|
||||||
|
com/google/common/collect/LinkedHashMultimap$ValueSetLink.class
|
||||||
|
com/google/common/collect/LinkedHashMultimap.class
|
||||||
|
com/google/common/collect/LinkedHashMultimapGwtSerializationDependencies.class
|
||||||
|
com/google/common/collect/LinkedListMultimap$1.class
|
||||||
|
com/google/common/collect/LinkedListMultimap$1EntriesImpl.class
|
||||||
|
com/google/common/collect/LinkedListMultimap$1KeySetImpl.class
|
||||||
|
com/google/common/collect/LinkedListMultimap$1ValuesImpl$1.class
|
||||||
|
com/google/common/collect/LinkedListMultimap$1ValuesImpl.class
|
||||||
|
com/google/common/collect/LinkedListMultimap$DistinctKeyIterator.class
|
||||||
|
com/google/common/collect/LinkedListMultimap$KeyList.class
|
||||||
|
com/google/common/collect/LinkedListMultimap$Node.class
|
||||||
|
com/google/common/collect/LinkedListMultimap$NodeIterator.class
|
||||||
|
com/google/common/collect/LinkedListMultimap$ValueForKeyIterator.class
|
||||||
|
com/google/common/collect/LinkedListMultimap.class
|
||||||
|
com/google/common/collect/MinMaxPriorityQueue$1.class
|
||||||
|
com/google/common/collect/MinMaxPriorityQueue$Builder.class
|
||||||
|
com/google/common/collect/MinMaxPriorityQueue$Heap.class
|
||||||
|
com/google/common/collect/MinMaxPriorityQueue$MoveDesc.class
|
||||||
|
com/google/common/collect/MinMaxPriorityQueue$QueueIterator.class
|
||||||
|
com/google/common/collect/MinMaxPriorityQueue.class
|
||||||
|
com/google/common/collect/MoreCollectors$ToOptionalState.class
|
||||||
|
com/google/common/collect/MoreCollectors.class
|
||||||
|
com/google/common/collect/MutableClassToInstanceMap$1.class
|
||||||
|
com/google/common/collect/MutableClassToInstanceMap$2$1.class
|
||||||
|
com/google/common/collect/MutableClassToInstanceMap$2.class
|
||||||
|
com/google/common/collect/MutableClassToInstanceMap$SerializedForm.class
|
||||||
|
com/google/common/collect/MutableClassToInstanceMap.class
|
||||||
|
com/google/common/collect/Queues.class
|
||||||
|
com/google/common/collect/RegularImmutableSortedMultiset.class
|
||||||
|
com/google/common/collect/RegularImmutableTable$1.class
|
||||||
|
com/google/common/collect/RegularImmutableTable$CellSet.class
|
||||||
|
com/google/common/collect/RegularImmutableTable$Values.class
|
||||||
|
com/google/common/collect/RegularImmutableTable.class
|
||||||
|
com/google/common/collect/RowSortedTable.class
|
||||||
|
com/google/common/collect/SingletonImmutableTable.class
|
||||||
|
com/google/common/collect/SortedMultisets$ElementSet.class
|
||||||
|
com/google/common/collect/SortedMultisets$NavigableElementSet.class
|
||||||
|
com/google/common/collect/SortedMultisets.class
|
||||||
|
com/google/common/collect/SparseImmutableTable.class
|
||||||
|
com/google/common/collect/StandardRowSortedTable$1.class
|
||||||
|
com/google/common/collect/StandardRowSortedTable$RowSortedMap.class
|
||||||
|
com/google/common/collect/StandardRowSortedTable.class
|
||||||
|
com/google/common/collect/StandardTable$1.class
|
||||||
|
com/google/common/collect/StandardTable$CellIterator.class
|
||||||
|
com/google/common/collect/StandardTable$Column$EntrySet.class
|
||||||
|
com/google/common/collect/StandardTable$Column$EntrySetIterator$1EntryImpl.class
|
||||||
|
com/google/common/collect/StandardTable$Column$EntrySetIterator.class
|
||||||
|
com/google/common/collect/StandardTable$Column$KeySet.class
|
||||||
|
com/google/common/collect/StandardTable$Column$Values.class
|
||||||
|
com/google/common/collect/StandardTable$Column.class
|
||||||
|
com/google/common/collect/StandardTable$ColumnKeyIterator.class
|
||||||
|
com/google/common/collect/StandardTable$ColumnKeySet.class
|
||||||
|
com/google/common/collect/StandardTable$ColumnMap$ColumnMapEntrySet$1.class
|
||||||
|
com/google/common/collect/StandardTable$ColumnMap$ColumnMapEntrySet.class
|
||||||
|
com/google/common/collect/StandardTable$ColumnMap$ColumnMapValues.class
|
||||||
|
com/google/common/collect/StandardTable$ColumnMap.class
|
||||||
|
com/google/common/collect/StandardTable$Row$1.class
|
||||||
|
com/google/common/collect/StandardTable$Row$2.class
|
||||||
|
com/google/common/collect/StandardTable$Row.class
|
||||||
|
com/google/common/collect/StandardTable$RowMap$EntrySet$1.class
|
||||||
|
com/google/common/collect/StandardTable$RowMap$EntrySet.class
|
||||||
|
com/google/common/collect/StandardTable$RowMap.class
|
||||||
|
com/google/common/collect/StandardTable$TableSet.class
|
||||||
|
com/google/common/collect/StandardTable.class
|
||||||
|
com/google/common/collect/Tables$1.class
|
||||||
|
com/google/common/collect/Tables$AbstractCell.class
|
||||||
|
com/google/common/collect/Tables$ImmutableCell.class
|
||||||
|
com/google/common/collect/Tables$TransformedTable$1.class
|
||||||
|
com/google/common/collect/Tables$TransformedTable$2.class
|
||||||
|
com/google/common/collect/Tables$TransformedTable$3.class
|
||||||
|
com/google/common/collect/Tables$TransformedTable.class
|
||||||
|
com/google/common/collect/Tables$TransposeTable$1.class
|
||||||
|
com/google/common/collect/Tables$TransposeTable.class
|
||||||
|
com/google/common/collect/Tables$UnmodifiableRowSortedMap.class
|
||||||
|
com/google/common/collect/Tables$UnmodifiableTable.class
|
||||||
|
com/google/common/collect/Tables.class
|
||||||
|
com/google/common/collect/TreeBasedTable$1.class
|
||||||
|
com/google/common/collect/TreeBasedTable$2.class
|
||||||
|
com/google/common/collect/TreeBasedTable$Factory.class
|
||||||
|
com/google/common/collect/TreeBasedTable$TreeRow.class
|
||||||
|
com/google/common/collect/TreeBasedTable.class
|
||||||
|
com/google/common/collect/TreeMultimap.class
|
||||||
|
com/google/common/collect/TreeMultiset$1.class
|
||||||
|
com/google/common/collect/TreeMultiset$2.class
|
||||||
|
com/google/common/collect/TreeMultiset$3.class
|
||||||
|
com/google/common/collect/TreeMultiset$4.class
|
||||||
|
com/google/common/collect/TreeMultiset$Aggregate$1.class
|
||||||
|
com/google/common/collect/TreeMultiset$Aggregate$2.class
|
||||||
|
com/google/common/collect/TreeMultiset$Aggregate.class
|
||||||
|
com/google/common/collect/TreeMultiset$AvlNode.class
|
||||||
|
com/google/common/collect/TreeMultiset$Reference.class
|
||||||
|
com/google/common/collect/TreeMultiset.class
|
||||||
|
com/google/common/collect/TreeRangeMap$1.class
|
||||||
|
com/google/common/collect/TreeRangeMap$AsMapOfRanges.class
|
||||||
|
com/google/common/collect/TreeRangeMap$RangeMapEntry.class
|
||||||
|
com/google/common/collect/TreeRangeMap$SubRangeMap$1$1.class
|
||||||
|
com/google/common/collect/TreeRangeMap$SubRangeMap$1.class
|
||||||
|
com/google/common/collect/TreeRangeMap$SubRangeMap$SubRangeMapAsMap$1.class
|
||||||
|
com/google/common/collect/TreeRangeMap$SubRangeMap$SubRangeMapAsMap$2.class
|
||||||
|
com/google/common/collect/TreeRangeMap$SubRangeMap$SubRangeMapAsMap$3.class
|
||||||
|
com/google/common/collect/TreeRangeMap$SubRangeMap$SubRangeMapAsMap$4.class
|
||||||
|
com/google/common/collect/TreeRangeMap$SubRangeMap$SubRangeMapAsMap.class
|
||||||
|
com/google/common/collect/TreeRangeMap$SubRangeMap.class
|
||||||
|
com/google/common/collect/TreeRangeMap.class
|
||||||
|
com/google/common/collect/TreeTraverser$1.class
|
||||||
|
com/google/common/collect/TreeTraverser$2$1.class
|
||||||
|
com/google/common/collect/TreeTraverser$2.class
|
||||||
|
com/google/common/collect/TreeTraverser$3$1.class
|
||||||
|
com/google/common/collect/TreeTraverser$3.class
|
||||||
|
com/google/common/collect/TreeTraverser$4.class
|
||||||
|
com/google/common/collect/TreeTraverser$BreadthFirstIterator.class
|
||||||
|
com/google/common/collect/TreeTraverser$PostOrderIterator.class
|
||||||
|
com/google/common/collect/TreeTraverser$PostOrderNode.class
|
||||||
|
com/google/common/collect/TreeTraverser$PreOrderIterator.class
|
||||||
|
com/google/common/collect/TreeTraverser.class
|
||||||
2
buildSrc/src/main/resources/exclusions/logback.txt
Normal file
2
buildSrc/src/main/resources/exclusions/logback.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
ch/qos/logback/core/db/**
|
||||||
|
ch/qos/logback/classic/db/**
|
||||||
6
buildSrc/src/main/resources/exclusions/others.txt
Normal file
6
buildSrc/src/main/resources/exclusions/others.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
arrow/core/extensions/**
|
||||||
|
org/checkerframework/**
|
||||||
|
org/intellij/**
|
||||||
|
com/google/errorprone/**
|
||||||
|
com/google/thirdparty/**
|
||||||
|
com/google/j2objc/**
|
||||||
@ -2,8 +2,7 @@
|
|||||||
"name": "css",
|
"name": "css",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"css": "NODE_ENV=dev MANIFEST=../simplenotes-app/src/main/resources/css-manifest.json postcss build src/styles.pcss --output ../simplenotes-app/src/main/resources/static/styles.css",
|
"//": "`gradle css`"
|
||||||
"css-purge": "NODE_ENV=production MANIFEST=../simplenotes-app/src/main/resources/css-manifest.json postcss build src/styles.pcss --output ../simplenotes-app/src/main/resources/static/styles.css"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"autoprefixer": "^9.8.6",
|
"autoprefixer": "^9.8.6",
|
||||||
|
|||||||
@ -1,8 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
rm simplenotes-app/src/main/resources/css-manifest.json
|
|
||||||
rm simplenotes-app/src/main/resources/static/styles*
|
|
||||||
|
|
||||||
yarn --cwd css run css-purge \
|
|
||||||
&& docker build -t hubv/simplenotes:latest . \
|
|
||||||
&& docker push hubv/simplenotes:latest
|
|
||||||
5
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
5
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
185
gradlew
vendored
Executable file
185
gradlew
vendored
Executable file
@ -0,0 +1,185 @@
|
|||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright 2015 the original author or authors.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
#
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
##
|
||||||
|
## Gradle start up script for UN*X
|
||||||
|
##
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
# Attempt to set APP_HOME
|
||||||
|
# Resolve links: $0 may be a link
|
||||||
|
PRG="$0"
|
||||||
|
# Need this for relative symlinks.
|
||||||
|
while [ -h "$PRG" ] ; do
|
||||||
|
ls=`ls -ld "$PRG"`
|
||||||
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||||
|
if expr "$link" : '/.*' > /dev/null; then
|
||||||
|
PRG="$link"
|
||||||
|
else
|
||||||
|
PRG=`dirname "$PRG"`"/$link"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
SAVED="`pwd`"
|
||||||
|
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||||
|
APP_HOME="`pwd -P`"
|
||||||
|
cd "$SAVED" >/dev/null
|
||||||
|
|
||||||
|
APP_NAME="Gradle"
|
||||||
|
APP_BASE_NAME=`basename "$0"`
|
||||||
|
|
||||||
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||||
|
|
||||||
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
|
MAX_FD="maximum"
|
||||||
|
|
||||||
|
warn () {
|
||||||
|
echo "$*"
|
||||||
|
}
|
||||||
|
|
||||||
|
die () {
|
||||||
|
echo
|
||||||
|
echo "$*"
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# OS specific support (must be 'true' or 'false').
|
||||||
|
cygwin=false
|
||||||
|
msys=false
|
||||||
|
darwin=false
|
||||||
|
nonstop=false
|
||||||
|
case "`uname`" in
|
||||||
|
CYGWIN* )
|
||||||
|
cygwin=true
|
||||||
|
;;
|
||||||
|
Darwin* )
|
||||||
|
darwin=true
|
||||||
|
;;
|
||||||
|
MINGW* )
|
||||||
|
msys=true
|
||||||
|
;;
|
||||||
|
NONSTOP* )
|
||||||
|
nonstop=true
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||||
|
|
||||||
|
|
||||||
|
# Determine the Java command to use to start the JVM.
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||||
|
else
|
||||||
|
JAVACMD="$JAVA_HOME/bin/java"
|
||||||
|
fi
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD="java"
|
||||||
|
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Increase the maximum file descriptors if we can.
|
||||||
|
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
|
||||||
|
MAX_FD_LIMIT=`ulimit -H -n`
|
||||||
|
if [ $? -eq 0 ] ; then
|
||||||
|
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||||
|
MAX_FD="$MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
ulimit -n $MAX_FD
|
||||||
|
if [ $? -ne 0 ] ; then
|
||||||
|
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Darwin, add options to specify how the application appears in the dock
|
||||||
|
if $darwin; then
|
||||||
|
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin or MSYS, switch paths to Windows format before running java
|
||||||
|
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
|
||||||
|
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||||
|
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||||
|
|
||||||
|
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||||
|
|
||||||
|
# We build the pattern for arguments to be converted via cygpath
|
||||||
|
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||||
|
SEP=""
|
||||||
|
for dir in $ROOTDIRSRAW ; do
|
||||||
|
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||||
|
SEP="|"
|
||||||
|
done
|
||||||
|
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||||
|
# Add a user-defined pattern to the cygpath arguments
|
||||||
|
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||||
|
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||||
|
fi
|
||||||
|
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||||
|
i=0
|
||||||
|
for arg in "$@" ; do
|
||||||
|
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||||
|
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||||
|
|
||||||
|
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||||
|
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||||
|
else
|
||||||
|
eval `echo args$i`="\"$arg\""
|
||||||
|
fi
|
||||||
|
i=`expr $i + 1`
|
||||||
|
done
|
||||||
|
case $i in
|
||||||
|
0) set -- ;;
|
||||||
|
1) set -- "$args0" ;;
|
||||||
|
2) set -- "$args0" "$args1" ;;
|
||||||
|
3) set -- "$args0" "$args1" "$args2" ;;
|
||||||
|
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||||
|
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||||
|
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||||
|
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||||
|
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||||
|
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Escape application args
|
||||||
|
save () {
|
||||||
|
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
||||||
|
echo " "
|
||||||
|
}
|
||||||
|
APP_ARGS=`save "$@"`
|
||||||
|
|
||||||
|
# Collect all arguments for the java command, following the shell quoting and substitution rules
|
||||||
|
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
|
||||||
|
|
||||||
|
exec "$JAVACMD" "$@"
|
||||||
89
gradlew.bat
vendored
Normal file
89
gradlew.bat
vendored
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
@rem
|
||||||
|
@rem Copyright 2015 the original author or authors.
|
||||||
|
@rem
|
||||||
|
@rem Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
@rem you may not use this file except in compliance with the License.
|
||||||
|
@rem You may obtain a copy of the License at
|
||||||
|
@rem
|
||||||
|
@rem https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
@rem
|
||||||
|
@rem Unless required by applicable law or agreed to in writing, software
|
||||||
|
@rem distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
@rem See the License for the specific language governing permissions and
|
||||||
|
@rem limitations under the License.
|
||||||
|
@rem
|
||||||
|
|
||||||
|
@if "%DEBUG%" == "" @echo off
|
||||||
|
@rem ##########################################################################
|
||||||
|
@rem
|
||||||
|
@rem Gradle startup script for Windows
|
||||||
|
@rem
|
||||||
|
@rem ##########################################################################
|
||||||
|
|
||||||
|
@rem Set local scope for the variables with windows NT shell
|
||||||
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
|
set DIRNAME=%~dp0
|
||||||
|
if "%DIRNAME%" == "" set DIRNAME=.
|
||||||
|
set APP_BASE_NAME=%~n0
|
||||||
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
|
||||||
|
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
|
||||||
|
|
||||||
|
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
|
||||||
|
|
||||||
|
@rem Find java.exe
|
||||||
|
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
|
set JAVA_EXE=java.exe
|
||||||
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
|
if "%ERRORLEVEL%" == "0" goto execute
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:findJavaFromJavaHome
|
||||||
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
|
if exist "%JAVA_EXE%" goto execute
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:execute
|
||||||
|
@rem Setup the command line
|
||||||
|
|
||||||
|
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
|
|
||||||
|
@rem Execute Gradle
|
||||||
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
|
||||||
|
|
||||||
|
:end
|
||||||
|
@rem End local scope for the variables with windows NT shell
|
||||||
|
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||||
|
|
||||||
|
:fail
|
||||||
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
|
rem the _cmd.exe /c_ return code!
|
||||||
|
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||||
|
exit /b 1
|
||||||
|
|
||||||
|
:mainEnd
|
||||||
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
||||||
|
:omega
|
||||||
250
pom.xml
250
pom.xml
@ -1,250 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-parent</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
|
|
||||||
<modules>
|
|
||||||
<module>simplenotes-persistance</module>
|
|
||||||
<module>simplenotes-app</module>
|
|
||||||
<module>simplenotes-domain</module>
|
|
||||||
<module>simplenotes-search</module>
|
|
||||||
<module>simplenotes-types</module>
|
|
||||||
<module>simplenotes-config</module>
|
|
||||||
<module>simplenotes-test-resources</module>
|
|
||||||
<module>simplenotes-views</module>
|
|
||||||
</modules>
|
|
||||||
|
|
||||||
<packaging>pom</packaging>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<java.version>14</java.version>
|
|
||||||
<kotlin.version>1.4.10</kotlin.version>
|
|
||||||
<junit.version>5.6.2</junit.version>
|
|
||||||
|
|
||||||
<kotlin.code.style>official</kotlin.code.style>
|
|
||||||
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
|
|
||||||
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
||||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
||||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
||||||
<kotlin.compiler.jvmTarget>${java.version}</kotlin.compiler.jvmTarget>
|
|
||||||
|
|
||||||
<org.mapstruct.version>1.4.1.Final</org.mapstruct.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
||||||
<version>${kotlin.version}</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
<build>
|
|
||||||
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
|
|
||||||
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
|
|
||||||
|
|
||||||
<pluginManagement>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<version>3.2.0</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
|
||||||
<version>3.2.4</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
|
||||||
<version>3.0.0-M5</version>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.maven.surefire</groupId>
|
|
||||||
<artifactId>surefire-junit-platform</artifactId>
|
|
||||||
<version>3.0.0-M5</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</pluginManagement>
|
|
||||||
|
|
||||||
<plugins>
|
|
||||||
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-enforcer-plugin</artifactId>
|
|
||||||
<version>3.0.0-M3</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>enforce</id>
|
|
||||||
<goals>
|
|
||||||
<goal>enforce</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<rules>
|
|
||||||
<banDuplicatePomDependencyVersions/>
|
|
||||||
<requireMavenVersion>
|
|
||||||
<version>3.6</version>
|
|
||||||
</requireMavenVersion>
|
|
||||||
</rules>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
|
|
||||||
<plugin>
|
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
|
||||||
<version>${kotlin.version}</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>kapt</id>
|
|
||||||
<goals>
|
|
||||||
<goal>kapt</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<annotationProcessorPaths>
|
|
||||||
<annotationProcessorPath>
|
|
||||||
<groupId>org.mapstruct</groupId>
|
|
||||||
<artifactId>mapstruct-processor</artifactId>
|
|
||||||
<version>${org.mapstruct.version}</version>
|
|
||||||
</annotationProcessorPath>
|
|
||||||
</annotationProcessorPaths>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
<execution>
|
|
||||||
<id>compile</id>
|
|
||||||
<phase>process-sources</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>compile</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
<execution>
|
|
||||||
<id>test-compile</id>
|
|
||||||
<goals>
|
|
||||||
<goal>test-compile</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
<configuration>
|
|
||||||
<args>
|
|
||||||
<arg>-Xno-param-assertions</arg>
|
|
||||||
<arg>-Xno-call-assertions</arg>
|
|
||||||
<arg>-Xno-receiver-assertions</arg>
|
|
||||||
</args>
|
|
||||||
<compilerPlugins>
|
|
||||||
<plugin>kotlinx-serialization</plugin>
|
|
||||||
</compilerPlugins>
|
|
||||||
</configuration>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
|
||||||
<artifactId>kotlin-maven-serialization</artifactId>
|
|
||||||
<version>${kotlin.version}</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
<dependencyManagement>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
|
||||||
<artifactId>kotlin-bom</artifactId>
|
|
||||||
<version>${kotlin.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jetbrains.kotlinx</groupId>
|
|
||||||
<artifactId>kotlinx-serialization-json-jvm</artifactId>
|
|
||||||
<version>1.0.0</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.koin</groupId>
|
|
||||||
<artifactId>koin-core</artifactId>
|
|
||||||
<version>2.1.6</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>ch.qos.logback</groupId>
|
|
||||||
<artifactId>logback-classic</artifactId>
|
|
||||||
<version>1.2.3</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.arrow-kt</groupId>
|
|
||||||
<artifactId>arrow-core</artifactId>
|
|
||||||
<version>0.11.0</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>slf4j-api</artifactId>
|
|
||||||
<version>1.7.25</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>me.liuwj.ktorm</groupId>
|
|
||||||
<artifactId>ktorm-core</artifactId>
|
|
||||||
<version>3.0.0</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>me.liuwj.ktorm</groupId>
|
|
||||||
<artifactId>ktorm-support-mysql</artifactId>
|
|
||||||
<version>3.0.0</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.mapstruct</groupId>
|
|
||||||
<artifactId>mapstruct</artifactId>
|
|
||||||
<version>${org.mapstruct.version}</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- region tests -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.junit.jupiter</groupId>
|
|
||||||
<artifactId>junit-jupiter</artifactId>
|
|
||||||
<version>${junit.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.mockk</groupId>
|
|
||||||
<artifactId>mockk</artifactId>
|
|
||||||
<version>1.10.0</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.natpryce</groupId>
|
|
||||||
<artifactId>hamkrest</artifactId>
|
|
||||||
<version>1.7.0.3</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.assertj</groupId>
|
|
||||||
<artifactId>assertj-core</artifactId>
|
|
||||||
<version>3.16.1</version>
|
|
||||||
</dependency>
|
|
||||||
<!-- endregion -->
|
|
||||||
</dependencies>
|
|
||||||
</dependencyManagement>
|
|
||||||
|
|
||||||
<repositories>
|
|
||||||
<repository>
|
|
||||||
<id>jcenter</id>
|
|
||||||
<url>https://jcenter.bintray.com</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>arrow</id>
|
|
||||||
<url>https://dl.bintray.com/arrow-kt/arrow-kt/</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>kotlinx</id>
|
|
||||||
<url>https://kotlin.bintray.com/kotlinx</url>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
|
||||||
|
|
||||||
</project>
|
|
||||||
8
settings.gradle.kts
Normal file
8
settings.gradle.kts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
rootProject.name = "simplenotes"
|
||||||
|
include(":simplenotes-config")
|
||||||
|
include(":simplenotes-views")
|
||||||
|
include(":simplenotes-app")
|
||||||
|
include(":simplenotes-domain")
|
||||||
|
include(":simplenotes-search")
|
||||||
|
include(":simplenotes-types")
|
||||||
|
include(":simplenotes-persistance")
|
||||||
32
simplenotes-app/build.gradle.kts
Normal file
32
simplenotes-app/build.gradle.kts
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import be.simplenotes.Libs
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("be.simplenotes.base")
|
||||||
|
id("be.simplenotes.app-shadow")
|
||||||
|
id("be.simplenotes.app-css")
|
||||||
|
id("be.simplenotes.app-docker")
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(project(":simplenotes-persistance"))
|
||||||
|
implementation(project(":simplenotes-search"))
|
||||||
|
implementation(project(":simplenotes-domain"))
|
||||||
|
implementation(project(":simplenotes-types"))
|
||||||
|
implementation(project(":simplenotes-config"))
|
||||||
|
implementation(project(":simplenotes-views"))
|
||||||
|
|
||||||
|
implementation(Libs.koinCore)
|
||||||
|
implementation(Libs.arrowCore)
|
||||||
|
implementation(Libs.konform)
|
||||||
|
implementation(Libs.http4kCore)
|
||||||
|
implementation(Libs.jettyServer)
|
||||||
|
implementation(Libs.jettyServlet)
|
||||||
|
implementation(Libs.javaxServlet)
|
||||||
|
implementation(Libs.kotlinxSerializationJson)
|
||||||
|
implementation(Libs.logbackClassic)
|
||||||
|
implementation(Libs.ktormCore)
|
||||||
|
|
||||||
|
testImplementation(Libs.junit)
|
||||||
|
testImplementation(Libs.assertJ)
|
||||||
|
testImplementation(Libs.http4kTestingHamkrest)
|
||||||
|
}
|
||||||
@ -1,203 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
|
||||||
<artifactId>simplenotes-parent</artifactId>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<artifactId>simplenotes-app</artifactId>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<http4k.version>3.268.0</http4k.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-persistance</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-search</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-domain</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-config</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.http4k</groupId>
|
|
||||||
<artifactId>http4k-core</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.http4k</groupId>
|
|
||||||
<artifactId>http4k-server-jetty</artifactId>
|
|
||||||
</dependency>
|
|
||||||
-->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
|
||||||
<artifactId>jetty-server</artifactId>
|
|
||||||
<version>9.4.32.v20200930</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
|
||||||
<artifactId>jetty-servlet</artifactId>
|
|
||||||
<version>9.4.32.v20200930</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>javax.servlet</groupId>
|
|
||||||
<artifactId>javax.servlet-api</artifactId>
|
|
||||||
<version>4.0.1</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jetbrains.kotlinx</groupId>
|
|
||||||
<artifactId>kotlinx-serialization-json-jvm</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>ch.qos.logback</groupId>
|
|
||||||
<artifactId>logback-classic</artifactId>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.assertj</groupId>
|
|
||||||
<artifactId>assertj-core</artifactId>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.junit.jupiter</groupId>
|
|
||||||
<artifactId>junit-jupiter</artifactId>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-test-resources</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<type>test-jar</type>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.http4k</groupId>
|
|
||||||
<artifactId>http4k-testing-hamkrest</artifactId>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>me.liuwj.ktorm</groupId>
|
|
||||||
<artifactId>ktorm-core</artifactId>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-views</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
<dependencyManagement>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.http4k</groupId>
|
|
||||||
<artifactId>http4k-bom</artifactId>
|
|
||||||
<version>${http4k.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</dependencyManagement>
|
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>shade</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<minimizeJar>true</minimizeJar>
|
|
||||||
<transformers>
|
|
||||||
<transformer
|
|
||||||
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
||||||
<mainClass>be.simplenotes.app.SimpleNotesKt</mainClass>
|
|
||||||
</transformer>
|
|
||||||
</transformers>
|
|
||||||
<filters>
|
|
||||||
<filter>
|
|
||||||
<artifact>com.h2database:h2</artifact>
|
|
||||||
<includes>
|
|
||||||
<include>**</include>
|
|
||||||
</includes>
|
|
||||||
</filter>
|
|
||||||
<filter>
|
|
||||||
<artifact>org.mariadb.jdbc:mariadb-java-client</artifact>
|
|
||||||
<includes>
|
|
||||||
<include>**</include>
|
|
||||||
</includes>
|
|
||||||
</filter>
|
|
||||||
<filter>
|
|
||||||
<artifact>org.jetbrains.kotlin:kotlin-reflect</artifact>
|
|
||||||
<includes>
|
|
||||||
<include>**</include>
|
|
||||||
</includes>
|
|
||||||
</filter>
|
|
||||||
<filter>
|
|
||||||
<artifact>org.eclipse.jetty:*</artifact>
|
|
||||||
<includes>
|
|
||||||
<include>**</include>
|
|
||||||
</includes>
|
|
||||||
</filter>
|
|
||||||
<filter>
|
|
||||||
<artifact>org.apache.lucene:*</artifact>
|
|
||||||
<includes>
|
|
||||||
<include>**</include>
|
|
||||||
</includes>
|
|
||||||
</filter>
|
|
||||||
<filter>
|
|
||||||
<artifact>org.ocpsoft.prettytime:prettytime</artifact>
|
|
||||||
<includes>
|
|
||||||
<include>**</include>
|
|
||||||
</includes>
|
|
||||||
</filter>
|
|
||||||
<filter>
|
|
||||||
<artifact>*:*</artifact>
|
|
||||||
<excludes>
|
|
||||||
<exclude>META-INF/maven/**</exclude>
|
|
||||||
<exclude>META-INF/proguard/**</exclude>
|
|
||||||
<exclude>META-INF/*.kotlin_module</exclude>
|
|
||||||
<exclude>META-INF/DEPENDENCIES*</exclude>
|
|
||||||
<exclude>META-INF/NOTICE*</exclude>
|
|
||||||
<exclude>META-INF/LICENSE*</exclude>
|
|
||||||
<exclude>LICENSE*</exclude>
|
|
||||||
<exclude>META-INF/README*</exclude>
|
|
||||||
<exclude>META-INF/native-image/**</exclude>
|
|
||||||
</excludes>
|
|
||||||
</filter>
|
|
||||||
</filters>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
|
||||||
9
simplenotes-config/build.gradle.kts
Normal file
9
simplenotes-config/build.gradle.kts
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import be.simplenotes.Libs
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("be.simplenotes.base")
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(Libs.koinCore)
|
||||||
|
}
|
||||||
@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
|
||||||
<artifactId>simplenotes-parent</artifactId>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<artifactId>simplenotes-config</artifactId>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.koin</groupId>
|
|
||||||
<artifactId>koin-core</artifactId>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
</project>
|
|
||||||
29
simplenotes-domain/build.gradle.kts
Normal file
29
simplenotes-domain/build.gradle.kts
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
import be.simplenotes.Libs
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("be.simplenotes.base")
|
||||||
|
kotlin("plugin.serialization") version "1.4.10"
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(project(":simplenotes-config"))
|
||||||
|
implementation(project(":simplenotes-types"))
|
||||||
|
implementation(project(":simplenotes-persistance"))
|
||||||
|
implementation(project(":simplenotes-search"))
|
||||||
|
|
||||||
|
implementation(Libs.kotlinxSerializationJson)
|
||||||
|
implementation(Libs.koinCore)
|
||||||
|
implementation(Libs.arrowCore)
|
||||||
|
implementation(Libs.konform)
|
||||||
|
implementation(Libs.jbcrypt)
|
||||||
|
implementation(Libs.javaJwt)
|
||||||
|
implementation(Libs.flexmark)
|
||||||
|
implementation(Libs.flexmarkGfmTasklist)
|
||||||
|
implementation(Libs.snakeyaml)
|
||||||
|
implementation(Libs.owaspHtmlSanitizer)
|
||||||
|
implementation(Libs.commonsCompress)
|
||||||
|
|
||||||
|
testImplementation(Libs.hamkrest)
|
||||||
|
testImplementation(Libs.junit)
|
||||||
|
testImplementation(Libs.mockk)
|
||||||
|
}
|
||||||
@ -1,113 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
|
||||||
<artifactId>simplenotes-parent</artifactId>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<artifactId>simplenotes-domain</artifactId>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-config</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-test-resources</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<type>test-jar</type>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.koin</groupId>
|
|
||||||
<artifactId>koin-core</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.arrow-kt</groupId>
|
|
||||||
<artifactId>arrow-core</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.natpryce</groupId>
|
|
||||||
<artifactId>hamkrest</artifactId>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.junit.jupiter</groupId>
|
|
||||||
<artifactId>junit-jupiter</artifactId>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.mockk</groupId>
|
|
||||||
<artifactId>mockk</artifactId>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.konform</groupId>
|
|
||||||
<artifactId>konform-jvm</artifactId>
|
|
||||||
<version>0.2.0</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.mindrot</groupId>
|
|
||||||
<artifactId>jbcrypt</artifactId>
|
|
||||||
<version>0.4</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.auth0</groupId>
|
|
||||||
<artifactId>java-jwt</artifactId>
|
|
||||||
<version>3.10.3</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.vladsch.flexmark</groupId>
|
|
||||||
<artifactId>flexmark</artifactId>
|
|
||||||
<version>0.62.2</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.vladsch.flexmark</groupId>
|
|
||||||
<artifactId>flexmark-ext-gfm-tasklist</artifactId>
|
|
||||||
<version>0.62.2</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.yaml</groupId>
|
|
||||||
<artifactId>snakeyaml</artifactId>
|
|
||||||
<version>1.26</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.googlecode.owasp-java-html-sanitizer</groupId>
|
|
||||||
<artifactId>owasp-java-html-sanitizer</artifactId>
|
|
||||||
<version>20200713.1</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.commons</groupId>
|
|
||||||
<artifactId>commons-compress</artifactId>
|
|
||||||
<version>1.20</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-types</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-persistance</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-search</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
</project>
|
|
||||||
@ -1,10 +1,6 @@
|
|||||||
package be.simplenotes.domain.usecases
|
package be.simplenotes.domain.usecases
|
||||||
|
|
||||||
import arrow.core.Either
|
import arrow.core.computations.either
|
||||||
import arrow.core.extensions.fx
|
|
||||||
import be.simplenotes.types.Note
|
|
||||||
import be.simplenotes.types.PersistedNote
|
|
||||||
import be.simplenotes.types.PersistedNoteMetadata
|
|
||||||
import be.simplenotes.domain.security.HtmlSanitizer
|
import be.simplenotes.domain.security.HtmlSanitizer
|
||||||
import be.simplenotes.domain.usecases.markdown.MarkdownConverter
|
import be.simplenotes.domain.usecases.markdown.MarkdownConverter
|
||||||
import be.simplenotes.domain.usecases.markdown.MarkdownParsingError
|
import be.simplenotes.domain.usecases.markdown.MarkdownParsingError
|
||||||
@ -12,6 +8,9 @@ import be.simplenotes.persistance.repositories.NoteRepository
|
|||||||
import be.simplenotes.persistance.repositories.UserRepository
|
import be.simplenotes.persistance.repositories.UserRepository
|
||||||
import be.simplenotes.search.NoteSearcher
|
import be.simplenotes.search.NoteSearcher
|
||||||
import be.simplenotes.search.SearchTerms
|
import be.simplenotes.search.SearchTerms
|
||||||
|
import be.simplenotes.types.Note
|
||||||
|
import be.simplenotes.types.PersistedNote
|
||||||
|
import be.simplenotes.types.PersistedNoteMetadata
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
class NoteService(
|
class NoteService(
|
||||||
@ -21,7 +20,7 @@ class NoteService(
|
|||||||
private val searcher: NoteSearcher,
|
private val searcher: NoteSearcher,
|
||||||
) {
|
) {
|
||||||
|
|
||||||
fun create(userId: Int, markdownText: String) = Either.fx<MarkdownParsingError, PersistedNote> {
|
fun create(userId: Int, markdownText: String) = either.eager<MarkdownParsingError, PersistedNote> {
|
||||||
val persistedNote = !markdownConverter.renderDocument(markdownText)
|
val persistedNote = !markdownConverter.renderDocument(markdownText)
|
||||||
.map { it.copy(html = HtmlSanitizer.sanitize(it.html)) }
|
.map { it.copy(html = HtmlSanitizer.sanitize(it.html)) }
|
||||||
.map { Note(it.metadata, markdown = markdownText, html = it.html) }
|
.map { Note(it.metadata, markdown = markdownText, html = it.html) }
|
||||||
@ -31,7 +30,7 @@ class NoteService(
|
|||||||
persistedNote
|
persistedNote
|
||||||
}
|
}
|
||||||
|
|
||||||
fun update(userId: Int, uuid: UUID, markdownText: String) = Either.fx<MarkdownParsingError, PersistedNote?> {
|
fun update(userId: Int, uuid: UUID, markdownText: String) = either.eager<MarkdownParsingError, PersistedNote?> {
|
||||||
val persistedNote = !markdownConverter.renderDocument(markdownText)
|
val persistedNote = !markdownConverter.renderDocument(markdownText)
|
||||||
.map { it.copy(html = HtmlSanitizer.sanitize(it.html)) }
|
.map { it.copy(html = HtmlSanitizer.sanitize(it.html)) }
|
||||||
.map { Note(it.metadata, markdown = markdownText, html = it.html) }
|
.map { Note(it.metadata, markdown = markdownText, html = it.html) }
|
||||||
|
|||||||
@ -1,11 +1,11 @@
|
|||||||
package be.simplenotes.domain.usecases.markdown
|
package be.simplenotes.domain.usecases.markdown
|
||||||
|
|
||||||
import arrow.core.Either
|
import arrow.core.Either
|
||||||
import arrow.core.extensions.fx
|
import arrow.core.computations.either
|
||||||
import arrow.core.left
|
import arrow.core.left
|
||||||
import arrow.core.right
|
import arrow.core.right
|
||||||
import be.simplenotes.types.NoteMetadata
|
|
||||||
import be.simplenotes.domain.validation.NoteValidations
|
import be.simplenotes.domain.validation.NoteValidations
|
||||||
|
import be.simplenotes.types.NoteMetadata
|
||||||
import com.vladsch.flexmark.ext.gfm.tasklist.TaskListExtension
|
import com.vladsch.flexmark.ext.gfm.tasklist.TaskListExtension
|
||||||
import com.vladsch.flexmark.html.HtmlRenderer
|
import com.vladsch.flexmark.html.HtmlRenderer
|
||||||
import com.vladsch.flexmark.parser.Parser
|
import com.vladsch.flexmark.parser.Parser
|
||||||
@ -73,10 +73,10 @@ internal class MarkdownConverterImpl : MarkdownConverter {
|
|||||||
|
|
||||||
private fun renderMarkdown(markdown: String) = parser.parse(markdown).run(renderer::render)
|
private fun renderMarkdown(markdown: String) = parser.parse(markdown).run(renderer::render)
|
||||||
|
|
||||||
override fun renderDocument(input: String) = Either.fx<MarkdownParsingError, Document> {
|
override fun renderDocument(input: String) = either.eager<MarkdownParsingError, Document> {
|
||||||
val (meta, md) = !splitMetaFromDocument(input)
|
val (meta, md) = !splitMetaFromDocument(input)
|
||||||
val parsedMeta = !parseMeta(meta)
|
val parsedMeta = !parseMeta(meta)
|
||||||
!NoteValidations.validateMetadata(parsedMeta).toEither { }.swap()
|
!Either.fromNullable(NoteValidations.validateMetadata(parsedMeta)).swap()
|
||||||
val html = renderMarkdown(md)
|
val html = renderMarkdown(md)
|
||||||
Document(parsedMeta, html)
|
Document(parsedMeta, html)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,11 +1,11 @@
|
|||||||
package be.simplenotes.domain.usecases.users.delete
|
package be.simplenotes.domain.usecases.users.delete
|
||||||
|
|
||||||
import arrow.core.Either
|
import arrow.core.Either
|
||||||
import arrow.core.extensions.fx
|
import arrow.core.computations.either
|
||||||
import arrow.core.rightIfNotNull
|
import arrow.core.rightIfNotNull
|
||||||
import be.simplenotes.domain.security.PasswordHash
|
import be.simplenotes.domain.security.PasswordHash
|
||||||
import be.simplenotes.persistance.repositories.UserRepository
|
|
||||||
import be.simplenotes.domain.validation.UserValidations
|
import be.simplenotes.domain.validation.UserValidations
|
||||||
|
import be.simplenotes.persistance.repositories.UserRepository
|
||||||
import be.simplenotes.search.NoteSearcher
|
import be.simplenotes.search.NoteSearcher
|
||||||
|
|
||||||
internal class DeleteUseCaseImpl(
|
internal class DeleteUseCaseImpl(
|
||||||
@ -13,15 +13,14 @@ internal class DeleteUseCaseImpl(
|
|||||||
private val passwordHash: PasswordHash,
|
private val passwordHash: PasswordHash,
|
||||||
private val searcher: NoteSearcher,
|
private val searcher: NoteSearcher,
|
||||||
) : DeleteUseCase {
|
) : DeleteUseCase {
|
||||||
override fun delete(form: DeleteForm) = Either.fx<DeleteError, Unit> {
|
override fun delete(form: DeleteForm) = either.eager<DeleteError, Unit> {
|
||||||
val user = !UserValidations.validateDelete(form)
|
val user = !UserValidations.validateDelete(form)
|
||||||
val persistedUser = !userRepository.find(user.username).rightIfNotNull { DeleteError.Unregistered }
|
val persistedUser = !userRepository.find(user.username).rightIfNotNull { DeleteError.Unregistered }
|
||||||
!Either.cond(
|
!Either.conditionally(
|
||||||
passwordHash.verify(user.password, persistedUser.password),
|
passwordHash.verify(user.password, persistedUser.password),
|
||||||
{ Unit },
|
{ DeleteError.WrongPassword },
|
||||||
{ DeleteError.WrongPassword }
|
{ Unit })
|
||||||
)
|
!Either.conditionally(userRepository.delete(persistedUser.id), { DeleteError.Unregistered }, { Unit })
|
||||||
!Either.cond(userRepository.delete(persistedUser.id), { Unit }, { DeleteError.Unregistered })
|
|
||||||
searcher.dropIndex(persistedUser.id)
|
searcher.dropIndex(persistedUser.id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
package be.simplenotes.domain.usecases.users.login
|
package be.simplenotes.domain.usecases.users.login
|
||||||
|
|
||||||
import arrow.core.Either
|
import arrow.core.computations.either
|
||||||
import arrow.core.extensions.fx
|
|
||||||
import arrow.core.filterOrElse
|
import arrow.core.filterOrElse
|
||||||
import arrow.core.rightIfNotNull
|
import arrow.core.rightIfNotNull
|
||||||
import be.simplenotes.domain.security.PasswordHash
|
import be.simplenotes.domain.security.PasswordHash
|
||||||
@ -15,7 +14,7 @@ internal class LoginUseCaseImpl(
|
|||||||
private val passwordHash: PasswordHash,
|
private val passwordHash: PasswordHash,
|
||||||
private val jwt: SimpleJwt
|
private val jwt: SimpleJwt
|
||||||
) : LoginUseCase {
|
) : LoginUseCase {
|
||||||
override fun login(form: LoginForm) = Either.fx<LoginError, Token> {
|
override fun login(form: LoginForm) = either.eager<LoginError, Token> {
|
||||||
val user = !UserValidations.validateLogin(form)
|
val user = !UserValidations.validateLogin(form)
|
||||||
!userRepository.find(user.username)
|
!userRepository.find(user.username)
|
||||||
.rightIfNotNull { Unregistered }
|
.rightIfNotNull { Unregistered }
|
||||||
|
|||||||
@ -1,8 +1,7 @@
|
|||||||
package be.simplenotes.domain.validation
|
package be.simplenotes.domain.validation
|
||||||
|
|
||||||
import arrow.core.*
|
|
||||||
import be.simplenotes.types.NoteMetadata
|
|
||||||
import be.simplenotes.domain.usecases.markdown.ValidationError
|
import be.simplenotes.domain.usecases.markdown.ValidationError
|
||||||
|
import be.simplenotes.types.NoteMetadata
|
||||||
import io.konform.validation.Validation
|
import io.konform.validation.Validation
|
||||||
import io.konform.validation.jsonschema.maxItems
|
import io.konform.validation.jsonschema.maxItems
|
||||||
import io.konform.validation.jsonschema.maxLength
|
import io.konform.validation.jsonschema.maxLength
|
||||||
@ -28,9 +27,9 @@ internal object NoteValidations {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun validateMetadata(meta: NoteMetadata): Option<ValidationError> {
|
fun validateMetadata(meta: NoteMetadata): ValidationError? {
|
||||||
val errors = metaValidator.validate(meta).errors
|
val errors = metaValidator.validate(meta).errors
|
||||||
return if (errors.isEmpty()) none()
|
return if (errors.isEmpty()) null
|
||||||
else return ValidationError(errors).some()
|
else return ValidationError(errors)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
25
simplenotes-persistance/build.gradle.kts
Normal file
25
simplenotes-persistance/build.gradle.kts
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import be.simplenotes.Libs
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("be.simplenotes.base")
|
||||||
|
kotlin("kapt")
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(project(":simplenotes-types"))
|
||||||
|
implementation(project(":simplenotes-config"))
|
||||||
|
|
||||||
|
implementation(Libs.mapstruct)
|
||||||
|
implementation(Libs.koinCore)
|
||||||
|
implementation(Libs.mariadbClient)
|
||||||
|
implementation(Libs.h2)
|
||||||
|
implementation(Libs.flywayCore)
|
||||||
|
implementation(Libs.hikariCP)
|
||||||
|
implementation(Libs.ktormCore)
|
||||||
|
implementation(Libs.ktormMysql)
|
||||||
|
|
||||||
|
kapt(Libs.mapstructProcessor)
|
||||||
|
|
||||||
|
testImplementation(Libs.junit)
|
||||||
|
testImplementation(Libs.assertJ)
|
||||||
|
}
|
||||||
@ -1,84 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
|
||||||
<artifactId>simplenotes-parent</artifactId>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<artifactId>simplenotes-persistance</artifactId>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.mapstruct</groupId>
|
|
||||||
<artifactId>mapstruct</artifactId>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-types</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-config</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-test-resources</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<type>test-jar</type>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.koin</groupId>
|
|
||||||
<artifactId>koin-core</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.assertj</groupId>
|
|
||||||
<artifactId>assertj-core</artifactId>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.junit.jupiter</groupId>
|
|
||||||
<artifactId>junit-jupiter</artifactId>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.mariadb.jdbc</groupId>
|
|
||||||
<artifactId>mariadb-java-client</artifactId>
|
|
||||||
<version>2.6.2</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.h2database</groupId>
|
|
||||||
<artifactId>h2</artifactId>
|
|
||||||
<version>1.4.200</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.flywaydb</groupId>
|
|
||||||
<artifactId>flyway-core</artifactId>
|
|
||||||
<version>6.5.4</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.zaxxer</groupId>
|
|
||||||
<artifactId>HikariCP</artifactId>
|
|
||||||
<version>3.4.3</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>me.liuwj.ktorm</groupId>
|
|
||||||
<artifactId>ktorm-core</artifactId>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>me.liuwj.ktorm</groupId>
|
|
||||||
<artifactId>ktorm-support-mysql</artifactId>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
</project>
|
|
||||||
@ -5,6 +5,7 @@ import be.simplenotes.persistance.utils.type
|
|||||||
import be.simplenotes.config.DataSourceConfig
|
import be.simplenotes.config.DataSourceConfig
|
||||||
import me.liuwj.ktorm.database.Database
|
import me.liuwj.ktorm.database.Database
|
||||||
import me.liuwj.ktorm.database.asIterable
|
import me.liuwj.ktorm.database.asIterable
|
||||||
|
import me.liuwj.ktorm.database.use
|
||||||
import java.sql.SQLTransientException
|
import java.sql.SQLTransientException
|
||||||
|
|
||||||
interface DbHealthCheck {
|
interface DbHealthCheck {
|
||||||
|
|||||||
@ -1,11 +1,12 @@
|
|||||||
package be.simplenotes.persistance.converters
|
package be.simplenotes.persistance.converters
|
||||||
|
|
||||||
import be.simplenotes.types.*
|
|
||||||
import be.simplenotes.persistance.notes.NoteEntity
|
import be.simplenotes.persistance.notes.NoteEntity
|
||||||
|
import be.simplenotes.types.*
|
||||||
import me.liuwj.ktorm.entity.Entity
|
import me.liuwj.ktorm.entity.Entity
|
||||||
import org.mapstruct.Mapper
|
import org.mapstruct.Mapper
|
||||||
import org.mapstruct.Mapping
|
import org.mapstruct.Mapping
|
||||||
import org.mapstruct.Mappings
|
import org.mapstruct.Mappings
|
||||||
|
import org.mapstruct.ReportingPolicy
|
||||||
import java.time.LocalDateTime
|
import java.time.LocalDateTime
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
@ -14,7 +15,7 @@ import java.util.*
|
|||||||
* This is an abstract class because kotlin default methods in interface are not seen as default in kapt
|
* This is an abstract class because kotlin default methods in interface are not seen as default in kapt
|
||||||
* @see [KT-25960](https://youtrack.jetbrains.com/issue/KT-25960)
|
* @see [KT-25960](https://youtrack.jetbrains.com/issue/KT-25960)
|
||||||
*/
|
*/
|
||||||
@Mapper(uses = [NoteEntityFactory::class, UserEntityFactory::class])
|
@Mapper(uses = [NoteEntityFactory::class, UserEntityFactory::class], unmappedTargetPolicy = ReportingPolicy.IGNORE)
|
||||||
internal abstract class NoteConverter {
|
internal abstract class NoteConverter {
|
||||||
|
|
||||||
fun toNote(entity: NoteEntity, tags: Tags) =
|
fun toNote(entity: NoteEntity, tags: Tags) =
|
||||||
|
|||||||
@ -1,12 +1,13 @@
|
|||||||
package be.simplenotes.persistance.converters
|
package be.simplenotes.persistance.converters
|
||||||
|
|
||||||
|
import be.simplenotes.persistance.users.UserEntity
|
||||||
import be.simplenotes.types.PersistedUser
|
import be.simplenotes.types.PersistedUser
|
||||||
import be.simplenotes.types.User
|
import be.simplenotes.types.User
|
||||||
import be.simplenotes.persistance.users.UserEntity
|
|
||||||
import me.liuwj.ktorm.entity.Entity
|
import me.liuwj.ktorm.entity.Entity
|
||||||
import org.mapstruct.Mapper
|
import org.mapstruct.Mapper
|
||||||
|
import org.mapstruct.ReportingPolicy
|
||||||
|
|
||||||
@Mapper(uses = [UserEntityFactory::class])
|
@Mapper(uses = [UserEntityFactory::class], unmappedTargetPolicy = ReportingPolicy.IGNORE)
|
||||||
internal interface UserConverter {
|
internal interface UserConverter {
|
||||||
fun toUser(userEntity: UserEntity): User
|
fun toUser(userEntity: UserEntity): User
|
||||||
fun toPersistedUser(userEntity: UserEntity): PersistedUser
|
fun toPersistedUser(userEntity: UserEntity): PersistedUser
|
||||||
|
|||||||
18
simplenotes-search/build.gradle.kts
Normal file
18
simplenotes-search/build.gradle.kts
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import be.simplenotes.Libs
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("be.simplenotes.base")
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(project(":simplenotes-types"))
|
||||||
|
|
||||||
|
implementation(Libs.luceneCore)
|
||||||
|
implementation(Libs.luceneQueryParser)
|
||||||
|
implementation(Libs.luceneAnalyzersCommon)
|
||||||
|
implementation(Libs.slf4jApi)
|
||||||
|
implementation(Libs.koinCore)
|
||||||
|
|
||||||
|
testImplementation(Libs.junit)
|
||||||
|
testImplementation(Libs.assertJ)
|
||||||
|
}
|
||||||
@ -1,71 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
|
||||||
<artifactId>simplenotes-parent</artifactId>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<artifactId>simplenotes-search</artifactId>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<lucene.version>8.6.1</lucene.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-types</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.lucene</groupId>
|
|
||||||
<artifactId>lucene-core</artifactId>
|
|
||||||
<version>${lucene.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.lucene</groupId>
|
|
||||||
<artifactId>lucene-analyzers-common</artifactId>
|
|
||||||
<version>${lucene.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.lucene</groupId>
|
|
||||||
<artifactId>lucene-queryparser</artifactId>
|
|
||||||
<version>${lucene.version}</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>slf4j-api</artifactId>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.koin</groupId>
|
|
||||||
<artifactId>koin-core</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.junit.jupiter</groupId>
|
|
||||||
<artifactId>junit-jupiter</artifactId>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.assertj</groupId>
|
|
||||||
<artifactId>assertj-core</artifactId>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-test-resources</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<type>test-jar</type>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
|
|
||||||
</project>
|
|
||||||
@ -1,28 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
|
||||||
<artifactId>simplenotes-parent</artifactId>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<artifactId>simplenotes-test-resources</artifactId>
|
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
<goal>test-jar</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
</project>
|
|
||||||
10
simplenotes-types/build.gradle.kts
Normal file
10
simplenotes-types/build.gradle.kts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import be.simplenotes.Libs
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("be.simplenotes.base")
|
||||||
|
kotlin("plugin.serialization") version "1.4.10"
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(Libs.kotlinxSerializationJson)
|
||||||
|
}
|
||||||
@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
|
||||||
<artifactId>simplenotes-parent</artifactId>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<artifactId>simplenotes-types</artifactId>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jetbrains.kotlinx</groupId>
|
|
||||||
<artifactId>kotlinx-serialization-json-jvm</artifactId>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
</project>
|
|
||||||
14
simplenotes-views/build.gradle.kts
Normal file
14
simplenotes-views/build.gradle.kts
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import be.simplenotes.Libs
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("be.simplenotes.base")
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(project(":simplenotes-types"))
|
||||||
|
|
||||||
|
implementation(Libs.koinCore)
|
||||||
|
implementation(Libs.konform)
|
||||||
|
implementation(Libs.kotlinxHtml)
|
||||||
|
implementation(Libs.prettytime)
|
||||||
|
}
|
||||||
@ -1,41 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
|
||||||
<artifactId>simplenotes-parent</artifactId>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<artifactId>simplenotes-views</artifactId>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.koin</groupId>
|
|
||||||
<artifactId>koin-core</artifactId>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.konform</groupId>
|
|
||||||
<artifactId>konform-jvm</artifactId>
|
|
||||||
<version>0.2.0</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jetbrains.kotlinx</groupId>
|
|
||||||
<artifactId>kotlinx-html-jvm</artifactId>
|
|
||||||
<version>0.7.1</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.ocpsoft.prettytime</groupId>
|
|
||||||
<artifactId>prettytime</artifactId>
|
|
||||||
<version>4.0.5.Final</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>be.simplenotes</groupId>
|
|
||||||
<artifactId>simplenotes-types</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
</project>
|
|
||||||
Loading…
x
Reference in New Issue
Block a user