maven 프로젝트에 jar파일을 어떻게 추가시켜요?
조회수 2521회
1 답변
-
이런 식으로 Maver 레파지토리에서 JAR파일을 설치하세요.
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging> -DgeneratePom=true Where: <path-to-file> the path to the file to load <group-id> the group that the file should be registered under <artifact-id> the artifact name for the file <version> the version of the file <packaging> the packaging of the file e.g. jar
댓글 입력