Example Of Travel Blog Post Layout

Interesting Business Cards

arch of constantine colosseum rome tickets

:
Software Infrastructure For Social Media
Update CI
1 parent Instagram Design Ideas commit 4a44199

Example Of Travel Blog Post Layout 3 files changed Project Launch PPT Template

Lines changed: 38 additions & 19 deletions

New Product Launch Timeline Free Template Word Interesting Business Cards

.circleci/config.yml

Lines changed: 37 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,49 @@ version: 2.1
55
# Define a job to be invoked later in a workflow.
66
# See: https://circleci.com/docs/configuration-reference/#jobs
77
jobs:
8-
say-hello:
9-
# Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
10-
# See: https://circleci.com/docs/configuration-reference/#executor-job
8+
clean:
119
docker:
12-
- image: cimg/base:stable
13-
# Add steps to the job
14-
# See: https://circleci.com/docs/configuration-reference/#steps
10+
# specify the version you desire here
11+
- image: cimg/openjdk:17.0.9
12+
13+
working_directory: ~/repo
14+
15+
environment:
16+
# Customize the JVM maximum heap limit
17+
MAVEN_OPTS: -Xmx3200m
18+
19+
steps:
20+
- checkout
21+
22+
# run clean!
23+
- run:
24+
name: Clean
25+
command: mvn clean
26+
build:
27+
docker:
28+
# specify the version you desire here
29+
- image: cimg/openjdk:17.0.9
30+
31+
working_directory: ~/repo
32+
33+
environment:
34+
# Customize the JVM maximum heap limit
35+
MAVEN_OPTS: -Xmx3200m
36+
1537
steps:
1638
- checkout
39+
40+
# run tests!
1741
- run:
18-
name: "Say hello"
19-
command: "echo Hello, World!"
42+
name: Test
43+
command: mvn integration-test
2044

2145
# Orchestrate jobs using workflows
2246
# See: https://circleci.com/docs/configuration-reference/#workflows
2347
workflows:
24-
say-hello-workflow:
48+
clean_build:
2549
jobs:
26-
- say-hello
50+
- clean
51+
- build:
52+
requires:
53+
- clean

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ The current project structure is as follows:
1919
- [Java EE with JAX-RS](web/jax-rs-money) currently **unstable/broken**/disabled
2020
- [Example using JSF with MoneyAPI](web/jsf-money)
2121

22-
[![Build Status](https://api.travis-ci.org/JavaMoney/javamoney-examples.png?branch=master)](https://travis-ci.org/JavaMoney/javamoney-examples) [![License](http://img.shields.io/badge/license-Apache2-red.svg)](http://opensource.org/licenses/apache-2.0)
22+
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/JavaMoney/javamoney-examples/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/JavaMoney/javamoney-examples/tree/main) [![License](http://img.shields.io/badge/license-Apache2-red.svg)](http://opensource.org/licenses/apache-2.0)
2323

2424
[![Built with Maven](http://maven.apache.org/images/logos/maven-feather.png)](http://maven.org/)

YouTube Mercedes F1 Launch Interesting Business Cards

Comments
 (0)