-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
47 lines (42 loc) · 1.52 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<artifactId>leetcode</artifactId>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
<groupId>org.apache.maven.plugins</groupId>
<version>${maven.compiler.plugin.version}</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
<scope>test</scope>
<version>4.13.1</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<groupId>com.raydya</groupId>
<modelVersion>4.0.0</modelVersion>
<name>leetcode</name>
<packaging>jar</packaging>
<properties>
<java.version>1.8</java.version>
<maven.compiler.plugin.version>3.8.0</maven.compiler.plugin.version>
<maven.source.plugin.version>3.2.0</maven.source.plugin.version>
</properties>
<version>1.0-SNAPSHOT</version>
</project>