Skip to content

Commit 5236709

Browse files
committed
Initial Bitbucket Pipelines configuration
1 parent 5967b27 commit 5236709

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

bitbucket-pipelines.yml

+16
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)