Skip to content

Commit f5409b8

Browse files
YuIYuI
YuI
authored and
YuI
committed
完善项目
1 parent eff5989 commit f5409b8

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.gitignore

+28
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,31 @@
2121

2222
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2323
hs_err_pid*
24+
25+
# Maven
26+
target/
27+
pom.xml.tag
28+
pom.xml.releaseBackup
29+
pom.xml.versionsBackup
30+
pom.xml.next
31+
release.properties
32+
dependency-reduced-pom.xml
33+
buildNumber.properties
34+
.mvn/wrapper/maven-wrapper.jar
35+
36+
# IntelliJ Idea
37+
.idea/
38+
*.iml
39+
out/
40+
gen/
41+
idea-gitignore.jar
42+
resources/templates.list
43+
resources/gitignore/*
44+
build/
45+
build.properties
46+
junit*.properties
47+
IgnoreLexer.java~
48+
.gradle
49+
.DS_Store
50+
51+
/verification

pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.yui</groupId>
8+
<artifactId>leet-code</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
12+
</project>

0 commit comments

Comments
 (0)