[OPB-16] adding suggestion module and upgrading to newer abstracto version

This commit is contained in:
Sheldan
2021-05-02 22:03:51 +02:00
parent a8ad582aec
commit 8de138550c
6 changed files with 43 additions and 6 deletions

View File

@@ -34,5 +34,5 @@ jobs:
env: env:
REGISTRY_PREFIX: docker.pkg.github.com/sheldan/oneplusbot/ REGISTRY_PREFIX: docker.pkg.github.com/sheldan/oneplusbot/
VERSION: ${{ env.version }} VERSION: ${{ env.version }}
ABSTRACTO_VERSION: 1.2.9 ABSTRACTO_VERSION: 1.2.10
ABSTRACTO_REGISTRY_PREFIX: docker.pkg.github.com/sheldan/abstracto/ ABSTRACTO_REGISTRY_PREFIX: docker.pkg.github.com/sheldan/abstracto/

View File

@@ -90,6 +90,11 @@
<artifactId>remind-impl</artifactId> <artifactId>remind-impl</artifactId>
</dependency> </dependency>
<dependency>
<groupId>dev.sheldan.abstracto.modules</groupId>
<artifactId>suggestion-impl</artifactId>
</dependency>
<dependency> <dependency>
<groupId>dev.sheldan.abstracto.modules</groupId> <groupId>dev.sheldan.abstracto.modules</groupId>
<artifactId>starboard-impl</artifactId> <artifactId>starboard-impl</artifactId>

View File

@@ -26,4 +26,4 @@ PGADMIN_DEFAULT_EMAIL=sheldan@sheldan.dev
PGADMIN_DEFAULT_PASSWORD=admin PGADMIN_DEFAULT_PASSWORD=admin
TOKEN=<INSERT TOKEN> TOKEN=<INSERT TOKEN>
YOUTUBE_API_KEY=<INSERT KEY> YOUTUBE_API_KEY=<INSERT KEY>
ONEPLUS_BOT_VERSION=1.3.9 ONEPLUS_BOT_VERSION=1.3.10

View File

@@ -109,6 +109,16 @@
<destFileName>remind.zip</destFileName> <destFileName>remind.zip</destFileName>
</artifactItem> </artifactItem>
<artifactItem>
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
<artifactId>suggestion</artifactId>
<version>${abstracto.templates.version}</version>
<type>zip</type>
<overWrite>true</overWrite>
<outputDirectory>${file.basedir}/deployment/template-artifacts/</outputDirectory>
<destFileName>suggestion.zip</destFileName>
</artifactItem>
<artifactItem> <artifactItem>
<groupId>dev.sheldan.abstracto-templates.templates</groupId> <groupId>dev.sheldan.abstracto-templates.templates</groupId>
<artifactId>logging</artifactId> <artifactId>logging</artifactId>
@@ -216,6 +226,16 @@
<destFileName>remind.zip</destFileName> <destFileName>remind.zip</destFileName>
</artifactItem> </artifactItem>
<artifactItem>
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
<artifactId>suggestion</artifactId>
<version>${abstracto.templates.version}</version>
<type>zip</type>
<overWrite>true</overWrite>
<outputDirectory>${file.basedir}/deployment/translation-artifacts/</outputDirectory>
<destFileName>suggestion.zip</destFileName>
</artifactItem>
<artifactItem> <artifactItem>
<groupId>dev.sheldan.abstracto-templates.translations</groupId> <groupId>dev.sheldan.abstracto-templates.translations</groupId>
<artifactId>logging</artifactId> <artifactId>logging</artifactId>
@@ -348,6 +368,17 @@
<destFileName>remind.zip</destFileName> <destFileName>remind.zip</destFileName>
</artifactItem> </artifactItem>
<artifactItem>
<groupId>dev.sheldan.abstracto.modules</groupId>
<artifactId>suggestion-impl</artifactId>
<version>${abstracto.version}</version>
<classifier>liquibase</classifier>
<type>zip</type>
<overWrite>true</overWrite>
<outputDirectory>${file.basedir}/deployment/liquibase-artifacts/</outputDirectory>
<destFileName>suggestion.zip</destFileName>
</artifactItem>
<artifactItem> <artifactItem>
<groupId>dev.sheldan.abstracto.modules</groupId> <groupId>dev.sheldan.abstracto.modules</groupId>
<artifactId>logging-impl</artifactId> <artifactId>logging-impl</artifactId>

View File

@@ -1,7 +1,7 @@
{ {
"template_artifacts": ["utility", "core", "entertainment", "starboard", "link-embed", "webservices", "remind", "logging", "template_artifacts": ["utility", "core", "entertainment", "starboard", "link-embed", "webservices", "remind", "logging",
"starboard-custom", "overrides-templates-webservices", "overrides-templates-core", "overrides-templates-logging", "news"], "suggestion", "starboard-custom", "overrides-templates-webservices", "overrides-templates-core", "overrides-templates-logging", "news"],
"translation_artifacts": ["utility", "core", "entertainment", "starboard", "link-embed", "webservices", "translation_artifacts": ["utility", "core", "entertainment", "starboard", "link-embed", "webservices", "suggestion",
"remind", "logging", "starboard-custom", "news"], "remind", "logging", "starboard-custom", "news"],
"liquibase_artifacts": [ "liquibase_artifacts": [
{ "zip": "scheduling", "file": "scheduling-changeLog.xml" }, { "zip": "scheduling", "file": "scheduling-changeLog.xml" },
@@ -13,6 +13,7 @@
{ "zip": "starboard", "file": "starboard-changeLog.xml"}, { "zip": "starboard", "file": "starboard-changeLog.xml"},
{ "zip": "remind", "file": "remind-changeLog.xml"}, { "zip": "remind", "file": "remind-changeLog.xml"},
{ "zip": "logging", "file": "logging-changeLog.xml"}, { "zip": "logging", "file": "logging-changeLog.xml"},
{ "zip": "suggestion", "file": "suggestion-changeLog.xml"},
{ "zip": "starboard-custom", "file": "starboard-custom-changeLog.xml"}, { "zip": "starboard-custom", "file": "starboard-custom-changeLog.xml"},
{ "zip": "news", "file": "news-changeLog.xml"} { "zip": "news", "file": "news-changeLog.xml"}
] ]

View File

@@ -19,8 +19,8 @@
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<!-- edit in release.yml as well --> <!-- edit in release.yml as well -->
<!-- when releasing a new opbot version, update the docker-compose as well--> <!-- when releasing a new opbot version, update the docker-compose as well-->
<abstracto.version>1.2.9</abstracto.version> <abstracto.version>1.2.10</abstracto.version>
<abstracto.templates.version>1.2.5</abstracto.templates.version> <abstracto.templates.version>1.2.6</abstracto.templates.version>
</properties> </properties>
<modules> <modules>