Merge pull request 'Added: new line to main' (#2) from Nero/DemoApplication1:master into master

Reviewed-on: mykola-derevianko/DemoApplication1#2
This commit is contained in:
mykola-derevianko 2025-10-10 09:33:09 +00:00
commit fddfd3423b
3 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,9 @@
<?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>

View File

@ -1,4 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">

View File

@ -11,6 +11,7 @@ public class BasicApplication {
public static void main(String[] args) {
System.out.println("Start application");
System.out.println("Custom2 application2");
System.out.println("I was here");
System.out.println(new Date());
SpringApplication.run(BasicApplication.class, args);
}