티스토리 뷰
1. pom이란
A Project Object Model or POM is the fundamental unit of work in Maven. It is an XML file that contains information about the project and configuration details used by Maven to build the project. It contains default values for most projects. Examples for this is the build directory, which is target; the source directory, which is src/main/java; the test source directory, which is src/main/test; and so on.
The POM was renamed from project.xml in Maven 1 to pom.xml in Maven 2. Instead of having a maven.xml file that contains the goals that can be executed, the goals or plugins are now configured in the pom.xml. When executing a task or goal, Maven looks for the POM in the current directory. It reads the POM, gets the needed configuration information, then executes the goal.
Some of the configuration that can be specified in the POM are the project dependencies, the plugins or goals that can be executed, the build profiles, and so on. Other information such as the project version, description, developers, mailing lists and such can also be specified.
2. Super POM
3. Minimal POM
The minimum requirement for a POM are the following:
- project root
- modelVersion - should be set to 4.0.0
- groupId - the id of the project's group.
- artifactId - the id of the artifact (project)
- version - the version of the artifact under the specified group
<project> <modelVersion>4.0.0</modelVersion> <groupId>com.mycompany.app</groupId> <artifactId>my-app</artifactId> <version>1</version> </project> |
fully qualified artifact name : <groupId>:<artifactId>:<version>
- Total
- Today
- Yesterday
- Google Tag Manager
- 빅쿼리
- 구글애널리틱스4
- 구글애널리틱스
- Ga
- 구글클라우드
- AWS
- GA4
- 오블완
- 구글시트API
- Python
- google sheet api
- googletagmanager
- google sheet
- GA4 강의
- Martech
- Google Analytics
- 마테크
- 파이썬
- GA API
- 업무자동화
- GTM
- IOS
- 구글태그매니저
- 데이터분석
- ChatGPT
- googleanalytics
- bigquery
- GCP
- 데이터전처리
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |