File tree Expand file tree Collapse file tree
core-java-modules/core-java-performance 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 >core-java-modules</artifactId >
7+ <groupId >com.wdbyte.core-java-modules</groupId >
8+ <version >1.0.0-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+ <groupId >com.wdbyte</groupId >
12+ <artifactId >core-java-performance</artifactId >
13+ <version >1.0.0-SNAPSHOT</version >
14+
15+ <properties >
16+ <maven .compiler.source>1.8</maven .compiler.source>
17+ <maven .compiler.target>1.8</maven .compiler.target>
18+ </properties >
19+
20+ </project >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xmlns =" http://maven.apache.org/POM/4.0.0"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >com.wdbyte</groupId >
8+ <artifactId >parent-modules</artifactId >
9+ <version >1.0.0-SNAPSHOT</version >
10+ <modules >
11+ <module >core-java-modules</module >
12+ </modules >
13+ <name >parent-modules</name >
14+ <description >Parent for all java modules</description >
15+ <packaging >pom</packaging >
16+
17+ <properties >
18+ <java .version>1.8</java .version>
19+ <guava .version>31.0.1-jre</guava .version>
20+ <commons-lang3 .version>3.12.0</commons-lang3 .version>
21+ </properties >
22+
23+ <dependencies >
24+ <!-- utils -->
25+ <dependency >
26+ <groupId >com.google.guava</groupId >
27+ <artifactId >guava</artifactId >
28+ <version >${guava.version} </version >
29+ </dependency >
30+ <dependency >
31+ <groupId >org.apache.commons</groupId >
32+ <artifactId >commons-lang3</artifactId >
33+ <version >${commons-lang3.version} </version >
34+ </dependency >
35+ </dependencies >
36+ </project >
You can’t perform that action at this time.
0 commit comments