[OPB-x] enabling remind module and updating to abstracto 1.2.8

This commit is contained in:
Sheldan
2021-04-11 00:39:23 +02:00
parent e251b12dff
commit d71faa9749
6 changed files with 44 additions and 7 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.7 ABSTRACTO_VERSION: 1.2.8
ABSTRACTO_REGISTRY_PREFIX: docker.pkg.github.com/sheldan/abstracto/ ABSTRACTO_REGISTRY_PREFIX: docker.pkg.github.com/sheldan/abstracto/

View File

@@ -85,6 +85,11 @@
<artifactId>webservices-impl</artifactId> <artifactId>webservices-impl</artifactId>
</dependency> </dependency>
<dependency>
<groupId>dev.sheldan.abstracto.modules</groupId>
<artifactId>remind-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.7 ONEPLUS_BOT_VERSION=1.3.8

View File

@@ -89,7 +89,7 @@
<destFileName>utility.zip</destFileName> <destFileName>utility.zip</destFileName>
</artifactItem> </artifactItem>
f <artifactItem> f <artifactItem>
<groupId>dev.sheldan.abstracto-templates.templates</groupId> <groupId>dev.sheldan.abstracto-templates.templates</groupId>
<artifactId>webservices</artifactId> <artifactId>webservices</artifactId>
<version>${abstracto.templates.version}</version> <version>${abstracto.templates.version}</version>
@@ -99,6 +99,16 @@
<destFileName>webservices.zip</destFileName> <destFileName>webservices.zip</destFileName>
</artifactItem> </artifactItem>
<artifactItem>
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
<artifactId>remind</artifactId>
<version>${abstracto.templates.version}</version>
<type>zip</type>
<overWrite>true</overWrite>
<outputDirectory>${file.basedir}/deployment/template-artifacts/</outputDirectory>
<destFileName>remind.zip</destFileName>
</artifactItem>
<artifactItem> <artifactItem>
<groupId>dev.sheldan.oneplus.bot.templates.modules</groupId> <groupId>dev.sheldan.oneplus.bot.templates.modules</groupId>
<artifactId>starboard-custom-templates</artifactId> <artifactId>starboard-custom-templates</artifactId>
@@ -176,6 +186,16 @@
<destFileName>webservices.zip</destFileName> <destFileName>webservices.zip</destFileName>
</artifactItem> </artifactItem>
<artifactItem>
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
<artifactId>remind</artifactId>
<version>${abstracto.templates.version}</version>
<type>zip</type>
<overWrite>true</overWrite>
<outputDirectory>${file.basedir}/deployment/translation-artifacts/</outputDirectory>
<destFileName>remind.zip</destFileName>
</artifactItem>
<artifactItem> <artifactItem>
<groupId>dev.sheldan.oneplus.bot.templates.translations</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations</groupId>
<artifactId>starboard-custom</artifactId> <artifactId>starboard-custom</artifactId>
@@ -276,6 +296,17 @@
<destFileName>webservices.zip</destFileName> <destFileName>webservices.zip</destFileName>
</artifactItem> </artifactItem>
<artifactItem>
<groupId>dev.sheldan.abstracto.modules</groupId>
<artifactId>remind-impl</artifactId>
<version>${abstracto.version}</version>
<classifier>liquibase</classifier>
<type>zip</type>
<overWrite>true</overWrite>
<outputDirectory>${file.basedir}/deployment/liquibase-artifacts/</outputDirectory>
<destFileName>remind.zip</destFileName>
</artifactItem>
<artifactItem> <artifactItem>
<groupId>dev.sheldan.oneplus.bot.application.custom</groupId> <groupId>dev.sheldan.oneplus.bot.application.custom</groupId>
<artifactId>starboard-custom</artifactId> <artifactId>starboard-custom</artifactId>

View File

@@ -1,6 +1,6 @@
{ {
"template_artifacts": ["utility", "core", "entertainment", "starboard", "link-embed", "webservices", "starboard-custom", "overrides-templates-webservices"], "template_artifacts": ["utility", "core", "entertainment", "starboard", "link-embed", "webservices", "remind", "starboard-custom", "overrides-templates-webservices"],
"translation_artifacts": ["utility", "core", "entertainment", "starboard", "link-embed", "webservices", "starboard-custom"], "translation_artifacts": ["utility", "core", "entertainment", "starboard", "link-embed", "webservices", "remind", "starboard-custom"],
"liquibase_artifacts": [ "liquibase_artifacts": [
{ "zip": "scheduling", "file": "scheduling-changeLog.xml" }, { "zip": "scheduling", "file": "scheduling-changeLog.xml" },
{ "zip": "core", "file": "core-changeLog.xml" }, { "zip": "core", "file": "core-changeLog.xml" },
@@ -9,6 +9,7 @@
{ "zip": "link-embed", "file": "link-embed-changeLog.xml"}, { "zip": "link-embed", "file": "link-embed-changeLog.xml"},
{ "zip": "webservices", "file": "webservices-changeLog.xml"}, { "zip": "webservices", "file": "webservices-changeLog.xml"},
{ "zip": "starboard", "file": "starboard-changeLog.xml"}, { "zip": "starboard", "file": "starboard-changeLog.xml"},
{ "zip": "remind", "file": "remind-changeLog.xml"},
{ "zip": "starboard-custom", "file": "starboard-custom-changeLog.xml"} { "zip": "starboard-custom", "file": "starboard-custom-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.7</abstracto.version> <abstracto.version>1.2.8</abstracto.version>
<abstracto.templates.version>1.2.3</abstracto.templates.version> <abstracto.templates.version>1.2.4</abstracto.templates.version>
</properties> </properties>
<modules> <modules>