- 학습 목표 달성 확인 목록
- [] github.com 에서 깃 저장소를 생성할 수 있는가?
[GitHub: Where the world builds software
GitHub is where over 56 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat…
github.com](https://github.com/)
깃허브와 같은 깃 저장소를 이용하여 리포지토리를 생성한다.
- [] github.com의 깃 저장소를 로컬 PC로 복제할 수 있는가?
$git clone ##저장소 주소 입력
맥 기준 해당 디렉토리로 이동한 후 clone을 사용한다
- [] gradle 빌드 도구를 이용하여 일반 폴더를 프로젝트 폴더로 구성할 수 있는가?
$gradle init
.
.
.
$gradle build
먼저 gradle로 초기화한 후 build로 구동을 해본다
- [] gradle 빌드 도구로 자바 프로젝트를 eclipse IDE 용 프로젝트로 전환할 수 있는가?
build.gradle 파일에 해당 내용을 포함한 후
plugins {
id 'java'
id 'eclipse'
}
$gradle eclipse
로 터미널에서 구동시킨다.
- [] ServerSocket/Socket 클래스를 이용하여 클라이언트/서버 애플리케이션을 구현할 수 있는가?
–추가예정–
- [] 통신 프로토콜을 정의하고 그 프로토콜에 맞춰 통신 프로그램을 구현할 수 있는가?
–추가예정–