Skip to content
Snippets Groups Projects
Commit 8d152652 authored by Griefed's avatar Griefed :joystick:
Browse files
parents a3e94db8 0d554b93
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ jobs: ...@@ -48,7 +48,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Setup Node.js environment - name: Setup Node.js environment
uses: actions/setup-node@v2.5.0 uses: actions/setup-node@v2.5.1
with: with:
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0 # Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0
node-version: '>= 16.13.1' node-version: '>= 16.13.1'
...@@ -126,7 +126,7 @@ jobs: ...@@ -126,7 +126,7 @@ jobs:
# 2. ubuntu-latest # 2. ubuntu-latest
# 3. windows-latest # 3. windows-latest
- name: Setup Node.js environment - name: Setup Node.js environment
uses: actions/setup-node@v2.5.0 uses: actions/setup-node@v2.5.1
with: with:
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0 # Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0
node-version: '>= 16.9.1' node-version: '>= 16.9.1'
......
...@@ -190,6 +190,9 @@ Gradle Test: ...@@ -190,6 +190,9 @@ Gradle Test:
# --tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA" # --tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA"
# --build-arg BRANCH_OR_TAG=$CI_COMMIT_REF_NAME # --build-arg BRANCH_OR_TAG=$CI_COMMIT_REF_NAME
# --file Dockerfile . # --file Dockerfile .
# only:
# variables:
# - $CI_SERVER_HOST == "git.griefed.de"
Gradle Dependency-Checks: Gradle Dependency-Checks:
image: griefed/baseimage-ubuntu-jdk-8:2.0.0 image: griefed/baseimage-ubuntu-jdk-8:2.0.0
...@@ -386,8 +389,9 @@ Gradle Dependency-Checks: ...@@ -386,8 +389,9 @@ Gradle Dependency-Checks:
# --tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:latest" # --tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:latest"
# --build-arg BRANCH_OR_TAG=$CI_COMMIT_TAG # --build-arg BRANCH_OR_TAG=$CI_COMMIT_TAG
# --file Dockerfile . # --file Dockerfile .
# rules: # only:
# - if: '$CI_COMMIT_TAG =~ /^\d+\.\d+\.\d+$/' # variables:
# - '$CI_COMMIT_TAG =~ /^\\d+\\.\\d+\\.\\d+$/ && $CI_SERVER_HOST == "git.griefed.de"'
#Build Docker PreRelease: #Build Docker PreRelease:
# stage: Build Release # stage: Build Release
...@@ -404,12 +408,13 @@ Gradle Dependency-Checks: ...@@ -404,12 +408,13 @@ Gradle Dependency-Checks:
# --tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:$CI_COMMIT_TAG" # --tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:$CI_COMMIT_TAG"
# --build-arg BRANCH_OR_TAG=$CI_COMMIT_TAG # --build-arg BRANCH_OR_TAG=$CI_COMMIT_TAG
# --file Dockerfile . # --file Dockerfile .
# rules: # only:
# - if: "$CI_COMMIT_TAG =~ /^\\d+\\.\\d+\\.\\d+(-beta|-alpha)\\.\\d+$/" # variables:
# - '$CI_COMMIT_TAG =~ /^\\d+\\.\\d+\\.\\d+(-beta|-alpha)\\.\\d+$/ && $CI_SERVER_HOST == "git.griefed.de"'
coverage: coverage:
stage: Other stage: Other
image: registry.gitlab.com/haynes/jacoco2cobertura:1.0.7 image: registry.gitlab.com/haynes/jacoco2cobertura:1.0.8
allow_failure: true allow_failure: true
script: script:
- python /opt/cover2cover.py build/jacoco/test/jacocoTestReport.xml $CI_PROJECT_DIR/backend/main/java/ > build/cobertura.xml - python /opt/cover2cover.py build/jacoco/test/jacocoTestReport.xml $CI_PROJECT_DIR/backend/main/java/ > build/cobertura.xml
...@@ -462,3 +467,5 @@ coverage: ...@@ -462,3 +467,5 @@ coverage:
# paths: # paths:
# - public # - public
# expire_in: 1 week # expire_in: 1 week
# rules:
# - if: "$CI_SERVER_HOST =~ /git.griefed.de/"
...@@ -11,14 +11,14 @@ plugins { ...@@ -11,14 +11,14 @@ plugins {
id 'jacoco' id 'jacoco'
id "com.github.ben-manes.versions" version '0.39.0' id "com.github.ben-manes.versions" version '0.41.0'
id 'maven-publish' id 'maven-publish'
id 'edu.sc.seis.launch4j' version '2.5.1' id 'edu.sc.seis.launch4j' version '2.5.1'
id 'org.siouan.frontend-jdk8' version '6.0.0' id 'org.siouan.frontend-jdk8' version '6.0.0'
id 'org.springframework.boot' version '2.6.2' id 'org.springframework.boot' version '2.6.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'io.spring.dependency-management' version '1.0.11.RELEASE'
} }
...@@ -92,27 +92,28 @@ dependencies { ...@@ -92,27 +92,28 @@ dependencies {
// WEB // WEB
//embed 'org.springframework.boot:spring-boot-starter-security:2.5.6' //embed 'org.springframework.boot:spring-boot-starter-security:2.5.6'
//embed 'org.springframework.boot:spring-boot-starter-validation:2.6.2' //embed 'org.springframework.boot:spring-boot-starter-validation:2.6.2'
embed 'org.springframework.boot:spring-boot-starter-web:2.6.2' embed 'org.springframework.boot:spring-boot-starter-web:2.6.3'
embed 'org.springframework.boot:spring-boot-starter-log4j2:2.6.2' embed 'org.springframework.boot:spring-boot-starter-log4j2:2.6.3'
embed 'org.springframework.boot:spring-boot-starter-quartz:2.6.2' embed 'org.springframework.boot:spring-boot-starter-quartz:2.6.3'
//embed 'org.springframework.boot:spring-boot-starter-data-jpa:2.6.2' //embed 'org.springframework.boot:spring-boot-starter-data-jpa:2.6.2'
//embed 'org.springframework.boot:spring-boot-starter-artemis:2.6.2' //embed 'org.springframework.boot:spring-boot-starter-artemis:2.6.2'
//embed 'org.apache.activemq:artemis-jms-server:2.19.0' //embed 'org.apache.activemq:artemis-jms-server:2.19.0'
embed 'org.apache.logging.log4j:log4j-web:2.17.0' embed 'org.apache.logging.log4j:log4j-web:2.17.1'
embed 'org.apache.logging.log4j:log4j-api:2.17.0' embed 'org.apache.logging.log4j:log4j-api:2.17.1'
embed 'org.apache.logging.log4j:log4j-core:2.17.0' embed 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.1'
embed 'org.apache.logging.log4j:log4j-core:2.17.1'
embed 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.0' embed 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.0'
embed 'org.apache.logging.log4j:log4j-web:2.17.0' embed 'org.apache.logging.log4j:log4j-web:2.17.1'
embed 'org.apache.logging.log4j:log4j-jul:2.17.0' embed 'org.apache.logging.log4j:log4j-jul:2.17.1'
// Dev tools // Dev tools
developmentOnly 'org.springframework.boot:spring-boot-devtools:2.6.2' developmentOnly 'org.springframework.boot:spring-boot-devtools:2.6.3'
// Testing // Testing
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.6.2' testImplementation 'org.springframework.boot:spring-boot-starter-test:2.6.3'
testImplementation 'org.junit.platform:junit-platform-commons:1.8.2' testImplementation 'org.junit.platform:junit-platform-commons:1.8.2'
} }
......
This diff is collapsed.
...@@ -26,20 +26,20 @@ ...@@ -26,20 +26,20 @@
"test": "echo \"No test specified\" && exit 0" "test": "echo \"No test specified\" && exit 0"
}, },
"dependencies": { "dependencies": {
"@quasar/extras": "1.12.2", "@quasar/extras": "1.12.4",
"axios": "0.24.0", "axios": "0.24.0",
"quasar": "2.4.2", "quasar": "2.4.9",
"core-js": "3.20.1", "core-js": "3.20.3",
"tsparticles": "1.37.6" "tsparticles": "1.38.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/eslint-parser": "7.16.5", "@babel/eslint-parser": "7.16.5",
"electron": "16.0.5", "electron": "16.0.7",
"@quasar/app": "3.2.6", "@quasar/app": "3.2.9",
"electron-packager": "15.4.0", "electron-packager": "15.4.0",
"eslint": "8.5.0", "eslint": "8.7.0",
"eslint-config-prettier": "8.3.0", "eslint-config-prettier": "8.3.0",
"eslint-plugin-vue": "8.2.0", "eslint-plugin-vue": "8.3.0",
"eslint-webpack-plugin": "3.1.1" "eslint-webpack-plugin": "3.1.1"
}, },
"browserslist": [ "browserslist": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment