일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- svn 특정 리비전 사이 추출
- Failed to download metadata for repo 'appstream'
- taskkill
- svn log
- mysql dml
- expected at least 1 bean which qualifies as autowire candidate
- svn commit
- ant
- postgres install
- grep
- svn 변경된 파일 추출
- docker oracle12c
- svn load
- xrdp
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- javax.servlet.GenericFilter
- svn
- docker 폐쇄망
- svn dump
- svn 사용법
- Store password unencrypted
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- VirtualBox
- Oracle install
- NEXUS
- 포스트그레스 설치
- WH question
- svn update
- Remmina
- apt-get update 오류
- Today
- Total
목록SCM (형상관리)/ant (3)
기억의 습작
ant는 자바 기반의 빌드 도구이다 *.java파일을 *.class로 컴파일 하는 기능 jar,war,ear,zip 파일로 생성하는 기능 파일이나 폴더를 이동,복사,삭제 하는 기능 파일이나 폴더에 퍼미션 설정하는 기능 파일의 변경 날짜를 설정하는 기능 (touch) 외부 프로그램 실행하는 기능 ant + @ = Maven or Gradle.
ant를 이용하여 빌드 자동화 구성을 하기 위해서는 build.xml 파일을 만들어야 한다. ant 명령어를 쳤을때 그 디랙토리에 build.xml 이 있어야 동작한다. build.xml 파일 내용 build.xml 을 만드는 자세한 방법은 https://ant.apache.org/manual/index.html 사이트를 참조하세요. 간단한 추가 설명 default="build" 는 ant 라고만 쳤을때 자동으로 뒤 파라미터에 입력될 값이다. ant 빌드가 성공적으로 수행되면 BUILD SUCCESSFUL 라고 출력된다.

download install setting using 1. 다운로드 https://ant.apache.org/bindownload.cgi Apache Ant - Binary Distributions Binary Distributions Apache Ant™ Apache Ant is a Java library and command-line tool that help building software. Downloading Apache Ant Use the links below to download a binary distribution of Ant from one of our mirrors. It is good practice to verify th ant.apache.org 2021-08-19기준 apa..