Compare commits

...

11 Commits

Author SHA1 Message Date
release-bot
fef4b0ad01 [maven-release-plugin] prepare release oneplusbot-1.6.22 2024-03-17 12:52:19 +00:00
Sheldan
ac93e11a47 [OPB-xxx] remove not accurate technology section 2024-03-17 13:49:31 +01:00
Sheldan
5bfe4a4aeb [OPB-xxx] upgrading abstracto version 2024-03-17 13:22:36 +01:00
Sheldan
216c578e08 [OPB-xxx] restructuring to use local postgres container for dev purposes
adding debug options to local dev version
removing deprecated flag from tilt file
2024-03-17 13:22:05 +01:00
release-bot
568cc85907 Commit from GitHub Actions (Publishes a new version of OnePlusBot) 2024-03-06 22:04:45 +00:00
release-bot
b19b3a9840 [maven-release-plugin] prepare for next development iteration 2024-03-06 21:59:09 +00:00
release-bot
54359e513e [maven-release-plugin] prepare release oneplusbot-1.6.21 2024-03-06 21:59:07 +00:00
Sheldan
65a86d2a52 [OPB-xxx] updating abstracto version to 1.5.26 2024-03-06 22:53:27 +01:00
release-bot
704d18e2f6 Commit from GitHub Actions (Publishes a new version of OnePlusBot) 2024-02-19 00:51:52 +00:00
release-bot
82d889019c [maven-release-plugin] prepare for next development iteration 2024-02-19 00:47:28 +00:00
release-bot
921789cd0b [maven-release-plugin] prepare release oneplusbot-1.6.20 2024-02-19 00:47:26 +00:00
56 changed files with 85 additions and 73 deletions

4
.env
View File

@@ -1,4 +1,4 @@
REGISTRY_PREFIX=harbor.sheldan.dev/oneplus-bot/ REGISTRY_PREFIX=harbor.sheldan.dev/oneplus-bot/
ABSTRACTO_PREFIX=harbor.sheldan.dev/abstracto/ ABSTRACTO_PREFIX=harbor.sheldan.dev/abstracto/
VERSION=1.6.19 VERSION=1.6.21
ABSTRACTO_VERSION=1.5.25 ABSTRACTO_VERSION=1.5.27

2
.gitignore vendored
View File

@@ -22,5 +22,7 @@ target/
*.rar *.rar
*.tgz *.tgz
Chart.lock
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid* hs_err_pid*

3
.tiltignore Normal file
View File

@@ -0,0 +1,3 @@
*.tgz
tilt/oneplusbot-dev/tmpcharts/
tilt/oneplusbot-dev/charts/*.tgz

View File

@@ -11,11 +11,3 @@ Custom features which were ported
- [x] Setup channel handling - [x] Setup channel handling
- [x] Referral link handling - [x] Referral link handling
# Technologies used in addition to the ones provided in abstracto
- [grafana](https://github.com/grafana/grafana) for visualization of the bot status and metrics
- [Loki](https://github.com/grafana/loki) to visualize and query log files
- [pgAdmin](https://github.com/postgres/pgadmin4) to view the database
- [prometheus](https://github.com/prometheus/prometheus) for metric collection
- [postgres](https://github.com/postgres/postgres) as a database
- [loki](https://github.com/grafana/loki) for log aggregation

View File

@@ -18,7 +18,7 @@ local_resource(
docker_build_with_restart( docker_build_with_restart(
registry + 'oneplus-bot-image', registry + 'oneplus-bot-image',
'./application/executable/target/jar', './application/executable/target/jar',
entrypoint=['java', '-noverify', '-cp', '.:./lib/*', 'dev.sheldan.oneplus.bot.executable.Application'], entrypoint=['java', '-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005', '-cp', '.:./lib/*', 'dev.sheldan.oneplus.bot.executable.Application'],
dockerfile='./application/executable/Dockerfile', dockerfile='./application/executable/Dockerfile',
live_update=[ live_update=[
sync('./application/executable/target/jar/BOOT-INF/lib', '/app/lib'), sync('./application/executable/target/jar/BOOT-INF/lib', '/app/lib'),
@@ -33,7 +33,8 @@ docker_build(registry + 'oneplus-bot-template-data', 'deployment/image-packaging
docker_build(registry + 'oneplus-bot-private-rest-api', 'deployment/image-packaging/src/main/docker/private-rest-api/', build_args={'REGISTRY_PREFIX': abstracto_registry}) docker_build(registry + 'oneplus-bot-private-rest-api', 'deployment/image-packaging/src/main/docker/private-rest-api/', build_args={'REGISTRY_PREFIX': abstracto_registry})
k8s_yaml(helm('deployment/helm/oneplus-bot', values= local('cd tilt/oneplusbot-dev && helm dep up')
k8s_yaml(helm('tilt/oneplusbot-dev', values=
['./../OnePlusBot-environments/argocd/apps/oneplus-bot/values/local/values.yaml', ['./../OnePlusBot-environments/argocd/apps/oneplus-bot/values/local/values.yaml',
'secrets://./../OnePlusBot-environments/argocd/apps/oneplus-bot/values/local/values.secrets.yaml'] 'secrets://./../OnePlusBot-environments/argocd/apps/oneplus-bot/values/local/values.secrets.yaml']
)) ))

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.application</groupId> <groupId>dev.sheldan.oneplus.bot.application</groupId>
<artifactId>application</artifactId> <artifactId>application</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>executable</artifactId> <artifactId>executable</artifactId>

View File

@@ -2,8 +2,8 @@ spring.datasource.url=jdbc:postgresql://${DB_HOST}:${DB_PORT}/${DB_NAME}
spring.datasource.username= ${DB_USER} spring.datasource.username= ${DB_USER}
spring.datasource.password= ${DB_PASS} spring.datasource.password= ${DB_PASS}
spring.datasource.hikari.maximum-pool-size=${hikariPoolSize} spring.datasource.hikari.maximum-pool-size=${hikariPoolSize}
spring.jpa.hibernate.default_schema=abstracto spring.jpa.hibernate.default_schema=${DB_SCHEMA}
spring.jpa.properties.hibernate.default_schema=abstracto spring.jpa.properties.hibernate.default_schema=${DB_SCHEMA}
spring.quartz.jdbc.initialize-schema=never spring.quartz.jdbc.initialize-schema=never
management.metrics.tags.application=OnePlusBot management.metrics.tags.application=OnePlusBot
management.endpoint.health.probes.enabled=true management.endpoint.health.probes.enabled=true

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.application.custom</groupId> <groupId>dev.sheldan.oneplus.bot.application.custom</groupId>
<artifactId>oneplus-bot-customizations</artifactId> <artifactId>oneplus-bot-customizations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<artifactId>oneplus-bot-customizations</artifactId> <artifactId>oneplus-bot-customizations</artifactId>
<groupId>dev.sheldan.oneplus.bot.application.custom</groupId> <groupId>dev.sheldan.oneplus.bot.application.custom</groupId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.application</groupId> <groupId>dev.sheldan.oneplus.bot.application</groupId>
<artifactId>application</artifactId> <artifactId>application</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.application.custom</groupId> <groupId>dev.sheldan.oneplus.bot.application.custom</groupId>
<artifactId>oneplus-bot-customizations</artifactId> <artifactId>oneplus-bot-customizations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<artifactId>oneplus-bot-modules</artifactId> <artifactId>oneplus-bot-modules</artifactId>
<groupId>dev.sheldan.oneplus.bot.application.modules</groupId> <groupId>dev.sheldan.oneplus.bot.application.modules</groupId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.application.modules</groupId> <groupId>dev.sheldan.oneplus.bot.application.modules</groupId>
<artifactId>oneplus-bot-modules</artifactId> <artifactId>oneplus-bot-modules</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.application</groupId> <groupId>dev.sheldan.oneplus.bot.application</groupId>
<artifactId>application</artifactId> <artifactId>application</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.application.modules</groupId> <groupId>dev.sheldan.oneplus.bot.application.modules</groupId>
<artifactId>oneplus-bot-modules</artifactId> <artifactId>oneplus-bot-modules</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.application.modules</groupId> <groupId>dev.sheldan.oneplus.bot.application.modules</groupId>
<artifactId>oneplus-bot-modules</artifactId> <artifactId>oneplus-bot-modules</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<artifactId>oneplus-bot-modules</artifactId> <artifactId>oneplus-bot-modules</artifactId>
<groupId>dev.sheldan.oneplus.bot.application.modules</groupId> <groupId>dev.sheldan.oneplus.bot.application.modules</groupId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -5,13 +5,13 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot</groupId> <groupId>dev.sheldan.oneplus.bot</groupId>
<artifactId>oneplusbot</artifactId> <artifactId>oneplusbot</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<groupId>dev.sheldan.oneplus.bot.application</groupId> <groupId>dev.sheldan.oneplus.bot.application</groupId>
<artifactId>application</artifactId> <artifactId>application</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
<modules> <modules>
<module>executable</module> <module>executable</module>
<module>oneplus-bot-customizations</module> <module>oneplus-bot-customizations</module>

View File

@@ -2,4 +2,4 @@ apiVersion: v2
name: oneplus-bot name: oneplus-bot
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
type: application type: application
version: 1.6.19 version: 1.6.21

View File

@@ -48,7 +48,7 @@ spec:
name: db-credentials name: db-credentials
key: dbName key: dbName
- name: DB_SCHEME - name: DB_SCHEME
value: "abstracto" value: {{ .Values.dbCredentials.schema }}
volumeMounts: volumeMounts:
- mountPath: "/var/db-config/" - mountPath: "/var/db-config/"
name: database-config-mount name: database-config-mount

View File

@@ -57,6 +57,8 @@ spec:
secretKeyRef: secretKeyRef:
name: db-credentials name: db-credentials
key: dbName key: dbName
- name: DB_SCHEMA
value: {{ .Values.dbCredentials.schema }}
- name: NEWS_FORUM_POST_NOTIFICATION_SERVER_ID - name: NEWS_FORUM_POST_NOTIFICATION_SERVER_ID
value: "{{ .Values.bot.config.newsForumPostNotificationServerId }}" value: "{{ .Values.bot.config.newsForumPostNotificationServerId }}"
- name: TOKEN - name: TOKEN

View File

@@ -48,7 +48,7 @@ spec:
name: db-credentials name: db-credentials
key: dbName key: dbName
- name: DB_SCHEME - name: DB_SCHEME
value: "abstracto." value: "{{ .Values.dbCredentials.schema }}."
volumeMounts: volumeMounts:
- mountPath: "/var/template-config/" - mountPath: "/var/template-config/"
name: template-config-mount name: template-config-mount

View File

@@ -3,7 +3,7 @@ bot:
repository: harbor.sheldan.dev/oneplus-bot repository: harbor.sheldan.dev/oneplus-bot
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
image: oneplus-bot-image image: oneplus-bot-image
tag: 1.6.19 tag: 1.6.21
livenessProbe: livenessProbe:
initialDelaySeconds: 60 initialDelaySeconds: 60
periodSeconds: 5 periodSeconds: 5
@@ -21,35 +21,36 @@ templateDeployment:
repository: harbor.sheldan.dev/abstracto repository: harbor.sheldan.dev/abstracto
pullPolicy: Always pullPolicy: Always
image: abstracto-template-deployment image: abstracto-template-deployment
tag: 1.5.25 tag: 1.5.27
templateDeploymentData: templateDeploymentData:
repository: harbor.sheldan.dev/oneplus-bot repository: harbor.sheldan.dev/oneplus-bot
pullPolicy: Always pullPolicy: Always
image: oneplus-bot-template-data image: oneplus-bot-template-data
tag: 1.6.19 tag: 1.6.21
dbConfigDeployment: dbConfigDeployment:
enabled: true enabled: true
repository: harbor.sheldan.dev/abstracto repository: harbor.sheldan.dev/abstracto
pullPolicy: Always pullPolicy: Always
image: abstracto-db-deployment image: abstracto-db-deployment
tag: 1.5.25 tag: 1.5.27
dbConfigDeploymentData: dbConfigDeploymentData:
repository: harbor.sheldan.dev/oneplus-bot repository: harbor.sheldan.dev/oneplus-bot
pullPolicy: Always pullPolicy: Always
image: oneplus-bot-db-data image: oneplus-bot-db-data
tag: 1.6.19 tag: 1.6.21
dbCredentials: dbCredentials:
host: null host: null
port: null port: null
userName: null userName: null
password: null password: null
name: null name: null
schema: abstracto
privateRestApi: privateRestApi:
enabled: true enabled: true
repository: harbor.sheldan.dev/oneplus-bot repository: harbor.sheldan.dev/oneplus-bot
pullPolicy: Always pullPolicy: Always
image: oneplus-bot-private-rest-api image: oneplus-bot-private-rest-api
tag: 1.6.19 tag: 1.6.21
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}
securityContext: {} securityContext: {}

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.deployment</groupId> <groupId>dev.sheldan.oneplus.bot.deployment</groupId>
<artifactId>deployment</artifactId> <artifactId>deployment</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<artifactId>oneplusbot</artifactId> <artifactId>oneplusbot</artifactId>
<groupId>dev.sheldan.oneplus.bot</groupId> <groupId>dev.sheldan.oneplus.bot</groupId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -12,13 +12,13 @@
<groupId>dev.sheldan.oneplus.bot</groupId> <groupId>dev.sheldan.oneplus.bot</groupId>
<artifactId>oneplusbot</artifactId> <artifactId>oneplusbot</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
<properties> <properties>
<maven.compiler.target>17</maven.compiler.target> <maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source> <maven.compiler.source>17</maven.compiler.source>
<abstracto.version>1.5.25</abstracto.version> <abstracto.version>1.5.27</abstracto.version>
<abstracto.templates.version>1.4.33</abstracto.templates.version> <abstracto.templates.version>1.4.35</abstracto.templates.version>
</properties> </properties>
<modules> <modules>
@@ -69,6 +69,6 @@
<connection>scm:git:${project.scm.url}</connection> <connection>scm:git:${project.scm.url}</connection>
<developerConnection>scm:git:${project.scm.url}</developerConnection> <developerConnection>scm:git:${project.scm.url}</developerConnection>
<url>https://github.com/Sheldan/OnePlusBot.git</url> <url>https://github.com/Sheldan/OnePlusBot.git</url>
<tag>HEAD</tag> <tag>oneplusbot-1.6.22</tag>
</scm> </scm>
</project> </project>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.customizations</groupId> <groupId>dev.sheldan.oneplus.bot.templates.customizations</groupId>
<artifactId>customization-templates</artifactId> <artifactId>customization-templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates</groupId> <groupId>dev.sheldan.oneplus.bot.templates</groupId>
<artifactId>oneplus-bot-templates</artifactId> <artifactId>oneplus-bot-templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.customizations</groupId> <groupId>dev.sheldan.oneplus.bot.templates.customizations</groupId>
<artifactId>customization-templates</artifactId> <artifactId>customization-templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.modules</groupId> <groupId>dev.sheldan.oneplus.bot.templates.modules</groupId>
<artifactId>oneplus-bot-module-templates</artifactId> <artifactId>oneplus-bot-module-templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.modules</groupId> <groupId>dev.sheldan.oneplus.bot.templates.modules</groupId>
<artifactId>oneplus-bot-module-templates</artifactId> <artifactId>oneplus-bot-module-templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates</groupId> <groupId>dev.sheldan.oneplus.bot.templates</groupId>
<artifactId>oneplus-bot-templates</artifactId> <artifactId>oneplus-bot-templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.modules</groupId> <groupId>dev.sheldan.oneplus.bot.templates.modules</groupId>
<artifactId>oneplus-bot-module-templates</artifactId> <artifactId>oneplus-bot-module-templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,13 +3,13 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates</groupId> <groupId>dev.sheldan.oneplus.bot.templates</groupId>
<artifactId>templates</artifactId> <artifactId>templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>oneplus-bot-templates</artifactId> <artifactId>oneplus-bot-templates</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
<modules> <modules>
<module>module-templates</module> <module>module-templates</module>
<module>customization-templates</module> <module>customization-templates</module>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId> <groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId>
<artifactId>template-overrides</artifactId> <artifactId>template-overrides</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId> <groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId>
<artifactId>template-overrides</artifactId> <artifactId>template-overrides</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId> <groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId>
<artifactId>template-overrides</artifactId> <artifactId>template-overrides</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId> <groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId>
<artifactId>template-overrides</artifactId> <artifactId>template-overrides</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates</groupId> <groupId>dev.sheldan.oneplus.bot.templates</groupId>
<artifactId>oneplus-bot-templates</artifactId> <artifactId>oneplus-bot-templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId> <groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId>
<artifactId>template-overrides</artifactId> <artifactId>template-overrides</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId> <groupId>dev.sheldan.oneplus.bot.templates.overrides</groupId>
<artifactId>template-overrides</artifactId> <artifactId>template-overrides</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot</groupId> <groupId>dev.sheldan.oneplus.bot</groupId>
<artifactId>oneplusbot</artifactId> <artifactId>oneplusbot</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modules> <modules>
@@ -14,7 +14,7 @@
<groupId>dev.sheldan.oneplus.bot.templates</groupId> <groupId>dev.sheldan.oneplus.bot.templates</groupId>
<artifactId>templates</artifactId> <artifactId>templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
<packaging>pom</packaging> <packaging>pom</packaging>
</project> </project>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations.customizations</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations.customizations</groupId>
<artifactId>customization-translations</artifactId> <artifactId>customization-translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations.customizations</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations.customizations</groupId>
<artifactId>customization-translations</artifactId> <artifactId>customization-translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations</groupId>
<artifactId>translations</artifactId> <artifactId>translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations.customizations</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations.customizations</groupId>
<artifactId>customization-translations</artifactId> <artifactId>customization-translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId>
<artifactId>module-translations</artifactId> <artifactId>module-translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId>
<artifactId>module-translations</artifactId> <artifactId>module-translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations</groupId>
<artifactId>translations</artifactId> <artifactId>translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId>
<artifactId>module-translations</artifactId> <artifactId>module-translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId>
<artifactId>module-translations</artifactId> <artifactId>module-translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId>
<artifactId>module-translations</artifactId> <artifactId>module-translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates</groupId> <groupId>dev.sheldan.oneplus.bot.templates</groupId>
<artifactId>templates</artifactId> <artifactId>templates</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations.overrides</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations.overrides</groupId>
<artifactId>translation-overrides</artifactId> <artifactId>translation-overrides</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>dev.sheldan.oneplus.bot.templates.translations</groupId> <groupId>dev.sheldan.oneplus.bot.templates.translations</groupId>
<artifactId>translations</artifactId> <artifactId>translations</artifactId>
<version>1.6.20-SNAPSHOT</version> <version>1.6.22</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -0,0 +1,11 @@
apiVersion: v2
description: oneplusbot dev chart
name: oneplusbot-dev
version: 1.0.0
dependencies:
- name: oneplus-bot
repository: file://../../deployment/helm/oneplus-bot
version: ">= 0.0.1"
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 12.12.10 # 13.x.x uses postgresql 16.x