migration on new package

This commit is contained in:
2020-11-25 14:08:45 +06:00
parent 08c6808706
commit 44f4b44c50
85 changed files with 257 additions and 258 deletions

View File

@@ -16,7 +16,7 @@ plugins {
}
project.version = "$core_version"
project.group = "com.insanusmokrassar"
project.group = "$group_name"
apply plugin: "java-library"
apply plugin: "kotlin"

View File

@@ -27,11 +27,11 @@ publishing {
pom {
description = "Exposed realisation for PostsSystem Core Publishing subsystem"
name = "PostsSystem Core Publishing Exposed realization"
url = "https://git.insanusmokrassar.com/PostsSystem/Core/"
url = "https://git.inmo.dev/PostsSystem/Core/"
scm {
developerConnection = "scm:git:[fetch=]https://git.insanusmokrassar.com/PostsSystem/Core/.git[push=]https://git.insanusmokrassar.com/PostsSystem/Core/.git"
url = "https://git.insanusmokrassar.com/PostsSystem/Core/.git"
developerConnection = "scm:git:[fetch=]https://git.inmo.dev/PostsSystem/Core/.git[push=]https://git.inmo.dev/PostsSystem/Core/.git"
url = "https://git.inmo.dev/PostsSystem/Core/.git"
}
developers {
@@ -48,7 +48,7 @@ publishing {
license {
name = "Apache Software License 2.0"
url = "https://git.insanusmokrassar.com/PostsSystem/Core/src/master/LICENSE"
url = "https://git.inmo.dev/PostsSystem/Core/src/master/LICENSE"
}
}

View File

@@ -1,8 +1,8 @@
package com.insanusmokrassar.postssystem.core.publishing.exposed
package dev.inmo.postssystem.core.publishing.exposed
import com.insanusmokrassar.postssystem.core.post.PostId
import com.insanusmokrassar.postssystem.core.publishing.TriggerControlKey
import com.insanusmokrassar.postssystem.core.publishing.repos.PublishingKeysRepo
import dev.inmo.postssystem.core.post.PostId
import dev.inmo.postssystem.core.publishing.TriggerControlKey
import dev.inmo.postssystem.core.publishing.repos.PublishingKeysRepo
import org.jetbrains.exposed.sql.*
import org.jetbrains.exposed.sql.transactions.transaction