부록 B. Red Hat Maven 리포지토리 사용
이 섹션에서는 소프트웨어에서 Red Hat 제공 Maven 리포지토리를 사용하는 방법에 대해 설명합니다.
B.1. 온라인 리포지토리 사용
Red Hat은 Maven 기반 프로젝트와 함께 사용할 중앙 Maven 리포지토리를 유지 관리합니다. 자세한 내용은 리포지토리 시작 페이지를 참조하십시오.
Maven 설정에 리포지토리를 추가하면 POM 파일이 리포지토리 구성을 재정의하지 않고 포함된 프로필이 활성화된 경우 해당 구성이 사용자가 소유한 모든 Maven 프로젝트에 적용됩니다.
절차
Maven
settings.xml
파일을 찾습니다. 일반적으로 사용자 홈 디렉터리의.m2
디렉토리 내에 있습니다. 파일이 없는 경우 텍스트 편집기를 사용하여 생성합니다.Linux 또는 UNIX에서:
/home/<username>/.m2/settings.xml
Windows에서 다음을 수행합니다.
C:\Users\<username>\.m2\settings.xml
다음 예제와 같이 Red Hat 리포지토리를 포함하는 새 프로필을
settings.xml
파일의profiles
요소에 추가합니다.예: Red Hat 리포지토리가 포함된 Maven
settings.xml
파일<settings> <profiles> <profile> <id>red-hat</id> <repositories> <repository> <id>red-hat-ga</id> <url>https://maven.repository.redhat.com/ga</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>red-hat-ga</id> <url>https://maven.repository.redhat.com/ga</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile> </profiles> <activeProfiles> <activeProfile>red-hat</activeProfile> </activeProfiles> </settings>
Maven 구성에 대한 자세한 내용은 Maven 설정 참조 를 참조하십시오.