grails 2.3 플러그 인 관리

로 컬 플러그 인 을 썼 습 니 다. 2, 3 이전에 인 스타 그램 - plugin / path / to / your / plugin 을 직접 가 져 와 사용 할 수 있 습 니 다.
2, 3 이 되면 다 시 는 이렇게 사용 할 수 없습니다.http://grails.org/doc/2.3.4/ref/Command%20Line/install-plugin.html
그럼 마 븐 사복 으로 하 자.
nexus 설치 후 nexus - work 디 렉 터 리 를 수정 합 니 다. 기본 값 은 ${user. home} / sontype - work / nexus 에 저 장 됩 니 다.
nexus - work 전에 하 나 를 추가 합 니 다:
my-work=D:/MyWork/sonatype-work/nexus
보다http://blog.csdn.net/sollider/article/details/9396695
nexus 기본 사용자 이름과 비밀번호: admin / admin 123
다음:
새 로 컬 라 이브 러 리: reposcory policy 에서 release 를 선택 하 십시오. 외부 네트워크 라면 url 발표 와 파일 탐색 을 닫 는 것 을 권장 합 니 다.
release 플러그 인 등장:http://grails-plugins.github.io/grails-release/docs/manual/
BuildConfig. groovy 에서 release 플러그 인 설치 여 부 를 확인 합 니 다.
build(":release:3.0.1",
                ;":rest-client-builder:1.0.3") {
            export = false
        }

설치 후 다음 내용 을 추가 합 니 다:
grails.project.repos.default = "myRepo"
grails.project.repos.myRepo.url = "http://localhost:9090/nexus-2.8.0-05/content/repositories/2"
grails.project.repos.myRepo.username = "admin"
grails.project.repos.myRepo.password = "admin123"

위의 내용 을... / grails / settings. groovy 에 저장 할 수도 있 습 니 다.
실행: maven - deploy, 이 플러그 인 을 사복 에 발표 합 니 다.
이 플러그 인 을 사용 하려 면 BuildConfig. groovy 의 reposiroties 에 하 나 를 추가 하 십시오:
http://localhost:9090/nexus-2.8.0-05/content/repositories/2
이렇게 하면 다른 플러그 인 을 설치 하 는 것 과 같 습 니 다.

좋은 웹페이지 즐겨찾기