Skip to content

Commit

Permalink
Merge pull request #9832 from murdos/enable-gradle
Browse files Browse the repository at this point in the history
feature(gradle): remove gradle-java from hidden resources
  • Loading branch information
murdos authored May 18, 2024
2 parents f0f10aa + 0d7d49c commit f6e697f
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ jobs:
run: npm ci
- name: 'Lint: check'
run: npm run lint:ci
- name: 'TEMP: enable gradle build tool slug'
run: sed -i '/- gradle-java/d' src/main/resources/config/application.yml
- name: 'Start local Sonar'
run: docker compose -f src/main/docker/sonar.yml up -d
- name: 'Test: run backend tests'
Expand Down Expand Up @@ -458,8 +456,7 @@ jobs:
if: steps.tests-requirement-check.outputs.execute_tests == 'true'
working-directory: /tmp/jhlite/${{ matrix.app }}/
run: |
# TODO: add also 'gradlew' once gradle support is more advanced
if [ -f 'mvnw' ]; then
if [ -f 'mvnw' ] || [ -f 'gradlew' ]; then
./start.sh
fi
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/config/application-angular.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
jhlite-hidden-resources.slugs:
- gradle-java
- spring-boot-kafka-sample-producer-consumer
- react-core
- svelte-core
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/config/application-react.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
jhlite-hidden-resources.slugs:
- gradle-java
- spring-boot-kafka-sample-producer-consumer
- angular-core
- svelte-core
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/config/application-vue.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
jhlite-hidden-resources.slugs:
- gradle-java
- spring-boot-kafka-sample-producer-consumer
- angular-core
- react-core
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/config/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ application:
jhlite-hidden-resources:
tags: banner
slugs:
- gradle-java # gradle is hidden until it is fully supported
- svelte-core

server:
Expand Down

0 comments on commit f6e697f

Please sign in to comment.