Skip to content

Commit 2a01440

Browse files
committed
Add demo-lesson
1 parent 7a06fe6 commit 2a01440

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

lesson-demo/pom.xml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.bobocode.demo;
2+
3+
public class DemoWebApp {
4+
5+
public static void main(String[] args) {
6+
7+
}
8+
}

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<module>3-0-spring-framework</module>
1717
<module>4-0-spring-boot-rest-api</module>
1818
<module>5-0-spring-boot-rest-client</module>
19+
<module>lesson-demo</module>
1920
</modules>
2021

2122
<properties>

0 commit comments

Comments
 (0)