Files
SCM-Manager/scm-ui/e2e-tests/package.json
René Pfeuffer 9bfb074805 Use Java 11 as compile version (#2033)
This sets Java 11 for compilation. To do so, this has to use the gradle smp plugin with the pull request scm-manager/gradle-smp-plugin#16. If the smp plugin is not released as version 0.10.4, the version has to be corrected for org.scm-manager.smpin the various build.gradle files.

It might be necessary to delete all build folders when switching between Java 8 and Java 11:

rm -rf build */build scm-plugins/*/build

Co-authored-by: Eduard Heimbuch <eduard.heimbuch@cloudogu.com>
2022-05-18 08:56:41 +02:00

30 lines
803 B
JSON

{
"name": "@scm-manager/e2e-tests",
"version": "2.35.0-SNAPSHOT",
"description": "End to end Tests for SCM-Manager",
"main": "index.js",
"author": "Eduard Heimbuch <eduard.heimbuch@cloudogu.com>",
"license": "MIT",
"private": false,
"scripts": {
"headless": "cypress run",
"ci": "integration-test-runner run -u scmadmin -p scmadmin -O ../build/target/ -d ./",
"lint": "eslint src"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@scm-manager/integration-test-runner": "^3.3.0",
"fluent-ffmpeg": "^2.1.2"
},
"devDependencies": {
"@scm-manager/eslint-config": "^2.15.1"
},
"prettier": "@scm-manager/prettier-config",
"eslintConfig": {
"extends": "@scm-manager/eslint-config"
},
"publishConfig": {
"access": "public"
}
}