File tree Expand file tree Collapse file tree
core-java-modules/core-java-collections-4 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ =========
2+
3+ ## Core Java Collections Cookbooks and Examples
4+
5+ ### Relevant Articles:
6+
7+ - TODO: add article links here
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project
3+ xmlns =" http://maven.apache.org/POM/4.0.0"
4+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
6+ <modelVersion >4.0.0</modelVersion >
7+ <artifactId >core-java-collections-3</artifactId >
8+ <version >0.1.0-SNAPSHOT</version >
9+ <name >core-java-collections-3</name >
10+ <packaging >jar</packaging >
11+ <parent >
12+ <groupId >com.baeldung.core-java-modules</groupId >
13+ <artifactId >core-java-modules</artifactId >
14+ <version >0.0.1-SNAPSHOT</version >
15+ <relativePath >../pom.xml</relativePath >
16+ </parent >
17+
18+ <dependencies >
19+ <dependency >
20+ <groupId >org.assertj</groupId >
21+ <artifactId >assertj-core</artifactId >
22+ <version >${assertj.version} </version >
23+ <scope >test</scope >
24+ </dependency >
25+ </dependencies >
26+
27+ <properties >
28+ <assertj .version>3.18.0</assertj .version>
29+ </properties >
30+
31+ </project >
You can’t perform that action at this time.
0 commit comments