Hipster stack for Java developers. Spring Boot + Angular in one handy generator.
code_check_prod:
stage: code_check
image: ubuntu
variables:
SONAR_TOKEN: my_token
SONAR_HOST_URL: https://sonar.example.com
DEBIAN_FRONTEND: noninteractive
script:
- apt update
- apt install -yq git default-jre nodejs
- export PROJECT_ID=`git remote get-url origin | sed "s/https:\/\/gitlab.com\///g" | sed "s/\.git//g" | tr "/" ":"`
- ./gradlew clean classes check jacocoTestReport sonarqube --no-daemon -Pprod -PnodeInstall -Dsonar.projectKey=$PROJECT_ID -Dsonar.host.url="$SONAR_HOST_URL" -Dsonar.token="$SONAR_TOKEN" -Dsonar.gitlab.commit_sha="$CI_BUILD_REF" -Dsonar.gitlab.ref_name="$CI_BUILD_REF_NAME"
needs: []
only:
- master
hi, I am new to jhipster, I tried to create .net blueprint using this cmd:
jhipster --blueprints dotnetcore
the answer the questions, but no Angular is generated!!, due to an error in the internationalization support, the error says:
Unable to find src/TestProject/ClientApp/src/i18n/en/home.json or missing required pattern. File rewrite failed.
Error: D:\git\src\TestProject\ClientApp\src\i18n\en\home.json doesn't exist
can any help
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>