Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
training-cicd-refapp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Eugene Birondo
training-cicd-refapp
Commits
94f3b64b
Commit
94f3b64b
authored
Oct 19, 2021
by
Eugene Birondo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated message
parent
3eb029d6
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
37 additions
and
1 deletion
+37
-1
.gitignore
.idea/.gitignore
+3
-0
modules.xml
.idea/modules.xml
+8
-0
runConfigurations.xml
.idea/runConfigurations.xml
+10
-0
training-cicd-refapp.iml
.idea/training-cicd-refapp.iml
+9
-0
vcs.xml
.idea/vcs.xml
+6
-0
HelloController.java
...raining/springbootrefapp/controllers/HelloController.java
+1
-1
No files found.
.idea/.gitignore
0 → 100644
View file @
94f3b64b
# Default ignored files
/shelf/
/workspace.xml
.idea/modules.xml
0 → 100644
View file @
94f3b64b
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"ProjectModuleManager"
>
<modules>
<module
fileurl=
"file://$PROJECT_DIR$/.idea/training-cicd-refapp.iml"
filepath=
"$PROJECT_DIR$/.idea/training-cicd-refapp.iml"
/>
</modules>
</component>
</project>
\ No newline at end of file
.idea/runConfigurations.xml
0 → 100644
View file @
94f3b64b
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"RunConfigurationProducerService"
>
<option
name=
"ignoredProducers"
>
<set>
<option
value=
"com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer"
/>
</set>
</option>
</component>
</project>
\ No newline at end of file
.idea/training-cicd-refapp.iml
0 → 100644
View file @
94f3b64b
<?xml version="1.0" encoding="UTF-8"?>
<module
type=
"JAVA_MODULE"
version=
"4"
>
<component
name=
"NewModuleRootManager"
inherit-compiler-output=
"true"
>
<exclude-output
/>
<content
url=
"file://$MODULE_DIR$"
/>
<orderEntry
type=
"inheritedJdk"
/>
<orderEntry
type=
"sourceFolder"
forTests=
"false"
/>
</component>
</module>
\ No newline at end of file
.idea/vcs.xml
0 → 100644
View file @
94f3b64b
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"VcsDirectoryMappings"
>
<mapping
directory=
""
vcs=
"Git"
/>
</component>
</project>
\ No newline at end of file
src/main/java/com/nisum/cicd/training/springbootrefapp/controllers/HelloController.java
View file @
94f3b64b
...
...
@@ -8,6 +8,6 @@ public class HelloController {
@RequestMapping
(
"/hello"
)
public
String
index
()
{
return
"
Greetings from Spring Boot! with another change
"
;
return
"
I changed the message on 10/19/21
"
;
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment