Skip to content

Commit fae7c1d

Browse files
committed
docs(maven_memo) : 의존성 추가를 위한 Maven 세팅 방법 작성
1 parent 2803e3c commit fae7c1d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

maven_memo

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Maven 의존성 주입하여 사용하기.
2+
다운로드 주소 : https://maven.apache.org/download.cgi
3+
4+
* 준비
5+
6+
1. POM.xml
7+
8+
<?xml version="1.0" encoding="UTF-8"?>
9+
<project xmlns="http://maven.apache.org/POM/4.0.0"
10+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12+
<modelVersion>4.0.0</modelVersion>
13+
<groupId>example</groupId>
14+
<artifactId>example</artifactId>
15+
<version>0.1</version>
16+
<packaging>pom</packaging>
17+
18+
</project>
19+
20+
2. 명령어 : (pom.xml 파일 위치) apache-maven-3.9.6/bin/mvn clean install
21+
22+
3. [INFO] BUILD SUCCESS 문구가 뜨면 완료.

0 commit comments

Comments
 (0)