File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed
Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+
5+ <groupId >net.java.adoptopenjdk</groupId >
6+ <artifactId >lambda-tutorial</artifactId >
7+ <version >1.0-SNAPSHOT</version >
8+ <packaging >jar</packaging >
9+
10+ <name >lambda-tutorial</name >
11+ <url >http://maven.apache.org</url >
12+
13+ <properties >
14+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15+ </properties >
16+
17+ <build >
18+ <plugins >
19+ <plugin >
20+ <groupId >org.apache.maven.plugins</groupId >
21+ <artifactId >maven-compiler-plugin</artifactId >
22+ <version >3.0</version >
23+ <configuration >
24+ <source >1.8</source >
25+ <target >1.8</target >
26+ </configuration >
27+ </plugin >
28+ </plugins >
29+ </build >
30+
31+
32+ <dependencies >
33+
34+ <dependency >
35+ <groupId >junit</groupId >
36+ <artifactId >junit</artifactId >
37+ <version >4.11</version >
38+ <scope >test</scope >
39+ </dependency >
40+ <dependency >
41+ <groupId >org.hamcrest</groupId >
42+ <artifactId >hamcrest-core</artifactId >
43+ <version >1.3</version >
44+ <scope >test</scope >
45+ </dependency >
46+ <dependency >
47+ <groupId >org.hamcrest</groupId >
48+ <artifactId >hamcrest-library</artifactId >
49+ <version >1.3</version >
50+ <scope >test</scope >
51+ </dependency >
52+
53+
54+ </dependencies >
55+ </project >
You can’t perform that action at this time.
0 commit comments