13 lines
266 B
YAML
13 lines
266 B
YAML
![]() |
language: java
|
||
|
sudo: false
|
||
|
|
||
|
env:
|
||
|
# Give Maven 1GB of memory to work with
|
||
|
- MAVEN_OPTS=-Xmx1024M
|
||
|
|
||
|
install:
|
||
|
- "echo 'Skipping install stage, dependencies will be downloaded during build and test stages.'"
|
||
|
|
||
|
script:
|
||
|
- "mvn clean package -Dmaven.test.skip=false"
|