일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- python 기초
- docker 명령어
- python
- 젠킨스
- Spring
- spring Annotation
- 애드센스 수익
- Vue 배우기
- IntelliJ
- scrapy
- intelliJ plugin
- spring boot 시작
- Spring Batch
- MYSQL
- Vue
- 티스토리 광고 수익
- 도커
- gradle
- 미국 배당주
- docker
- 구글 애드센스 수익
- AES256
- Spring Batch 강의
- apache log4j
- Python 기본편
- JDK1.3
- docker mysql
- Vue 알아보기
- 미국주식
- Vue 강의
목록gradle (3)
나만의공간
Apache Maven Project 원문 Guide to naming conventions on groupId, artifactId, and version groupId uniquely identifies your project across all projects. A group ID should follow Java's package name rules. This means it starts with a reversed domain name you control. For example,org.apache.maven, org.apache.commonsYou can create as many subgroups as you want. A good way to determine the granularity ..
1. Gradle Project 생성하는법 시작하기전 필요사항 1) 약 5분에 시간 2) 텍스트 편집기 혹은 IDE(Eclipse, Intellij) 3) JDK 1.7이상 4) Gradle Version 3.4 혹은 그 이상 2. 신규 프로젝트 생성심플한 gradle 프로젝트를 먼저 생성한다.$ mkdir test $ cd test $ gradle init --type java-library * gradle 프로젝트를 신규로 생성하고, 유형은 Java이며, 자바라이브러리를 가져온다??위 명령어를 실행하고 나면 아래와 같은 폴더 구조 및 파일들이 자동으로 생성된다.├── build.gradle ├── gradle ├── gradlew ├── gradlew.bat ├── settings.gradle └──..
1. Gradle 소개Gradle 설치에 대한 자세한 안내는 https://gradle.org/ 싸이트에 더 자세히 설명 되어 있습니다.여러언어 JAVA, C++, Python등에 대한 Build를 제공하며 빠른 배포(Deliver)또한 제공하는 Build Tool로서 Linked in , android, NETFLIX, Adobe등에서도 사용하고 있습니다.2. Gradle 설치 전 확인 사항설치 하기전에 JDK7 이상 설치가 필수 입니다. 설치가 되어 있는지 먼저 확인이 필요합니다. $ java -version java version "1.8.0_111" Java(TM) SE Runtime Environment (build 1.8.0_111-b14) Java HotSpot(TM) 64-Bit Serve..