File tree Expand file tree Collapse file tree 3 files changed +41
-0
lines changed
src/main/java/com/bobocode/demo Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <parent >
6
+ <artifactId >java-web-course</artifactId >
7
+ <groupId >com.bobocode</groupId >
8
+ <version >1.0-SNAPSHOT</version >
9
+ </parent >
10
+ <modelVersion >4.0.0</modelVersion >
11
+
12
+ <artifactId >lesson-demo</artifactId >
13
+
14
+ <properties >
15
+ <maven .compiler.source>11</maven .compiler.source>
16
+ <maven .compiler.target>11</maven .compiler.target>
17
+ </properties >
18
+
19
+ <dependencies >
20
+ <dependency >
21
+ <groupId >com.bobocode</groupId >
22
+ <artifactId >java-web-course-util</artifactId >
23
+ <version >1.0-SNAPSHOT</version >
24
+ </dependency >
25
+ <dependency >
26
+ <groupId >org.springframework.boot</groupId >
27
+ <artifactId >spring-boot-starter-web</artifactId >
28
+ <version >2.5.5</version >
29
+ </dependency >
30
+ </dependencies >
31
+
32
+ </project >
Original file line number Diff line number Diff line change
1
+ package com .bobocode .demo ;
2
+
3
+ public class DemoWebApp {
4
+
5
+ public static void main (String [] args ) {
6
+
7
+ }
8
+ }
Original file line number Diff line number Diff line change 16
16
<module >3-0-spring-framework</module >
17
17
<module >4-0-spring-boot-rest-api</module >
18
18
<module >5-0-spring-boot-rest-client</module >
19
+ <module >lesson-demo</module >
19
20
</modules >
20
21
21
22
<properties >
You can’t perform that action at this time.
0 commit comments