목차

Maven(메이븐)

  • description : maven 관련 팁과 주요 내용 정리
  • author : 주레피
  • email : dhan@repia.com
  • lastupdate : 2020-01-31

repository 경로 변경

settings.xml

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      https://maven.apache.org/xsd/settings-1.0.0.xsd">
  <localRepository>D:/03.MAVEN/repository</localRepository>
</settings>

ref

settings.xml 생성해서 경로 변경

Faq

<dependency> …. </dependency> 를 추가 하였을 때 오류가 난다면, Note: 에 주의하라
pom.xml의 <repositories> 부분에
<repository>
  <id>Spring Plugins</id>
  <url>http://repo.spring.io/plugins-release/</url>
</repository>

추가 하면 정상적으로 다운로드가 된다

Maven Goal

Goal?

$ mvn [goal명령어] [goal명령어] [goal명령어]

Ref