We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5967b27 commit 5236709Copy full SHA for 5236709
bitbucket-pipelines.yml
@@ -0,0 +1,16 @@
1
+# This is a sample build configuration for Java (Gradle).
2
+# Check our guides at https://confluence.atlassian.com/x/zd-5Mw for more examples.
3
+# Only use spaces to indent your .yml configuration.
4
+# -----
5
+# You can specify a custom docker image from Docker Hub as your build environment.
6
+image: openjdk:8
7
+
8
+pipelines:
9
+ default:
10
+ - step:
11
+ caches:
12
+ - gradle
13
+ script: # Modify the commands below to build your repository.
14
+ # You must commit the Gradle wrapper to your repository
15
+ # https://docs.gradle.org/current/userguide/gradle_wrapper.html
16
+ - bash ./gradlew build
0 commit comments