하나의 pom에서 여러 버전을 profile을 이용하여 build 하는 경우, 이경운 pom의 artifactId 값이 같아서. nexus에서 사용하기 힘들었다. 이런경우 "xxxx" 를 이용하면 쉽게 해결 가능하다. pomcom.test.comprofileTest0.0.1 test1 xxxx-aaaa-${classifier} org.apache.maven.plugins maven-jar-plugin server${project.build.directory}/classescom/aaa/snnet/** test2 .... mvn clean deploy -Ptest1 위와 같이 진행하면,nexus에서는 xxxx-aaaa-server.jar 파일이 올라가게 된다. 해당 jar를 받을때는 아래 같이 하면 받을 ..