maven 학습 1
다운로드, 설치, 말 안 할 게 요. 인터넷 에 자료 가 많아 요.
maven 2 설정 파일 은 두 개의 pom. xml settings. xml 입 니 다.
pom. xml 파일 의 역할 은 무엇 입 니까?pom --- project object model 프로젝트 대상 모델
제 이 해 는 이 렇 습 니 다. 하나의 항목 은 pom. xml 에 대응 합 니 다. 이 항목 을 묘사 하 는 것 입 니 다. 프로젝트 의 속성 을 설명 하 는 것 입 니까?pom. xml 파일 을 보고 감성 적 인 인식 을 해 보도 록 하 겠 습 니 다.
<project> //
<modelVersion>4.0.0</modelVersion>
<!-- The Basics -->
<groupId>...</groupId> // , org.codehaus.mojo :/org/codehaus/mojo
<artifactId>...</artifactId> //
<version>...</version> //
<packaging>...</packaging>
<dependencies>...</dependencies> :
<parent>...</parent> ,
<dependencyManagement>...</dependencyManagement>
<modules>...</modules>
<properties>...</properties>
<!-- Build Settings -->
<build>...</build> build profile build
<reporting>...</reporting> site 。 maven 。
<!-- More Project Information -->
<name>...</name> : artifactId ,
<description>...</description>
<url>...</url> url
<inceptionYear>...</inceptionYear>
<licenses>...</licenses>
<organization>...</organization>
<developers>...</developers>
<contributors>...</contributors>
<!-- Environment Settings -->
<issueManagement>...</issueManagement>
<ciManagement>...</ciManagement> Continuous Integration Management
<mailingLists>...</mailingLists>
<scm>...</scm> , cvs svn
<prerequisites>...</prerequisites>
<repositories>...</repositories> settings.xml
<pluginRepositories>...</pluginRepositories>
<distributionManagement>...</distributionManagement>
<profiles>...</profiles>
</project>
설정 정보 가 너무 많아 서 어 지 러 워 요.
참고 하 다
http://www.javaresearch.org/article/61260.htm
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Windows에서 CodeArtifact(Maven)용 토큰을 자동으로 생성하는 방법CodeArtifact를 사용한 적이 있거나 사용할 계획이라면 매일 모든 Maven 프로젝트에서 수동으로 토큰(CODEARTIFACT_AUTH_TOKEN)을 생성해야 합니다. 이는 어려울 수 있으며 개발 속도를 늦출...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.