jenkins에서 maven build시 unmappable character for encoding ASCII 에러
jenkins 상에서 maven build 설정 중 error 발생,,,
maven 사용하여 build는 처음이라 삽질 좀 했다,,,
1. build file name
build file name에 버전 정보를 삭제하고 싶은 경우 하단 코드 참고
pom.xml에 설정해주면 된다.
1 2 3 4 5 6 7 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>yongpwi</artifactId> <build> <finalName>${project.artifactId}</finalName> </build> </project> |
2. jenkins build시 unmappable character for encoding ASCII error
요건 좀 삽질 했는데,,,
역시나 찾아보니 답은 있음,,,
pom.xml plugin에 encoding 설정을 해주면 해결 가능!
1 2 3 4 5 6 7 8 9 | <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> |