Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: 2.1

orbs:
maven: circleci/[email protected]

workflows:
maven_test:
jobs:
- maven/test # checkout, build, test, and upload test results
1 change: 1 addition & 0 deletions newbranch
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hi ne barnch created and code changes pushes into new branch
2 changes: 1 addition & 1 deletion src/com/bt/contoller/SampleController.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ String uploadImage(HttpServletRequest request, HttpServletResponse response, Htt
throws JSONException {

JSONObject js = new JSONObject();
js.put("Name", "Gangadhar Reddy");
js.put("Name", "Bhaskar Reddy");
js.put("Technology", "DevOps ");

return js.toString();
Expand Down