검색

부록 B. Red Hat Maven 리포지토리 사용

download PDF

이 섹션에서는 소프트웨어에서 Red Hat 제공 Maven 리포지토리를 사용하는 방법에 대해 설명합니다.

B.1. 온라인 리포지토리 사용

Red Hat은 Maven 기반 프로젝트와 함께 사용할 중앙 Maven 리포지토리를 유지 관리합니다. 자세한 내용은 리포지토리 시작 페이지를 참조하십시오.

Maven 설정에 리포지토리를 추가하면 POM 파일이 리포지토리 구성을 재정의하지 않고 포함된 프로필이 활성화된 경우 해당 구성이 사용자가 소유한 모든 Maven 프로젝트에 적용됩니다.

절차

  1. Maven settings.xml 파일을 찾습니다. 일반적으로 사용자 홈 디렉터리의 .m2 디렉토리 내에 있습니다. 파일이 없는 경우 텍스트 편집기를 사용하여 생성합니다.

    Linux 또는 UNIX에서:

    /home/<username>/.m2/settings.xml

    Windows에서 다음을 수행합니다.

    C:\Users\<username>\.m2\settings.xml
  2. 다음 예제와 같이 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 설정 참조 를 참조하십시오.

Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

© 2024 Red Hat, Inc.