File tree Expand file tree Collapse file tree
src/main/java/com/bobocode Expand file tree Collapse file tree 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-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 >
Original file line number Diff line number Diff line change 1+ package com .bobocode ;
2+
3+ public class DemoApp {
4+ public static void main (String [] args ) {
5+ }
6+ }
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments