나는 pom.xml 파일을 가지고 있으며 <artifactId>
그 차이가 태그 에있는 것과 동일하게 참조되는 3 개의 종속성임을 알 수 있습니다.
<classifier>sources</classifier>
<classifier>javadoc</classifier>
종속성이 SOURCES/JAVADOC
하나 뿐인 종속성을 삭제했습니다 . 내 응용 프로그램을 테스트했는데 모든 것이 잘 작동합니다.
이 분류 자 태그를 사용하는 목적은 무엇입니까? <classifier>
태그 를 추가하기 위해 종속성을 두 번 복제해야하는 이유 SOURCES/JAVADOC
.
<dependency>
<groupId>oauth.signpost</groupId>
<artifactId>signpost-commonshttp4</artifactId>
<version>1.2.1.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>oauth.signpost</groupId>
<artifactId>signpost-commonshttp4</artifactId>
<version>1.2.1.2</version>
<type>jar</type>
***<classifier>javadoc</classifier>***
<scope>compile</scope>
</dependency>
<dependency>
<groupId>oauth.signpost</groupId>
<artifactId>signpost-commonshttp4</artifactId>
<version>1.2.1.2</version>
<type>jar</type>
***<classifier>sources</classifier>***
<scope>compile</scope>
</dependency>