"JitPack"의 두 판 사이의 차이

(새 문서: ==개요== ;JitPack ;지트팩 * Git 저장소 패키지를 Maven 저장소로서 사용할 수 있게 해주는 서비스 * 공개 Git 저장소는 무료, 비공개 Git 저장소는...)
 
1번째 줄: 1번째 줄:
==개요==
==개요==
;JitPack
;JitPack
;jitpack.io
;지트팩
;지트팩
* Git 저장소 패키지를 Maven 저장소로서 사용할 수 있게 해주는 서비스
* Git 저장소 패키지를 Maven 저장소로서 사용할 수 있게 해주는 서비스
* 공개 Git 저장소는 무료, 비공개 Git 저장소는 유료<ref>https://jitpack.io/private#subscribe</ref>
* 공개 Git 저장소는 무료, 비공개 Git 저장소는 유료<ref>https://jitpack.io/private#subscribe</ref>
==Maven 사용법==
* pom.xml에 repositories와 dependency 추가
<source lang='xml'>
<repositories>
<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>
</repositories>
</source>
<source lang='xml'>
<dependency>
    <groupId>com.github.기트허브사용자명</groupId>
    <artifactId>기트허브저장소명</artifactId>
    <version>릴리즈태그</version>
</dependency>
</source>


==참고 자료==
==참고 자료==

2016년 8월 2일 (화) 17:34 판

1 개요

JitPack
jitpack.io
지트팩
  • Git 저장소 패키지를 Maven 저장소로서 사용할 수 있게 해주는 서비스
  • 공개 Git 저장소는 무료, 비공개 Git 저장소는 유료[1]

2 Maven 사용법

  • pom.xml에 repositories와 dependency 추가
	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>
	<dependency>
	    <groupId>com.github.기트허브사용자명</groupId>
	    <artifactId>기트허브저장소명</artifactId>
	    <version>릴리즈태그</version>
	</dependency>

3 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}