Skip to content

Commit 220dd9a

Browse files
committed
Initial demo
1 parent 4eaac76 commit 220dd9a

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

Diff for: lesson-demo/pom.xml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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-fundamentals-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>15</maven.compiler.source>
16+
<maven.compiler.target>15</maven.compiler.target>
17+
</properties>
18+
<dependencies>
19+
<dependency>
20+
<groupId>com.bobocode</groupId>
21+
<artifactId>java-fundamentals-util</artifactId>
22+
<version>1.0-SNAPSHOT</version>
23+
</dependency>
24+
</dependencies>
25+
26+
</project>

Diff for: lesson-demo/src/main/java/com/bobocode/DemoApp.java

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package com.bobocode;
2+
3+
public class DemoApp {
4+
public static void main(String[] args) {
5+
}
6+
}

Diff for: pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<module>5-0-functional-programming</module>
2525
<module>6-0-test-driven-development</module>
2626
<module>java-fundamentals-util</module>
27+
<module>lesson-demo</module>
2728
</modules>
2829

2930
<dependencies>

0 commit comments

Comments
 (0)