Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- France
- Malaysia
- psychology
- erlang
- QT
- Book review
- django
- MySQL
- Software Engineering
- hadoop
- leadership
- history
- Book
- programming_book
- comic agile
- Kuala Lumpur
- Spain
- RFID
- program
- agile
- management
- essay
- Java
- web
- Programming
- Linux
- ubuntu
- hbase
- Italy
- Python
Archives
- Today
- Total
maven: error in opening zip file 본문
Problem: seeing the message 'error: error reading .../.../...jar; error in opening zip file, it's usually jar file is bad.
Solution: installing the right jar file (http://ondra.zizka.cz/stranky/programovani/java/maven/log4j-missing-jmx-sun-deps.texy)
mvn install:install-file -Dfile=[downloaded jar file full path] -DgroupId=[group id] -DartifactId=[artifact id] -Dversion=[version] -Dpackaging=jar -DgeneratePom=true
mvn install:install-file -Dfile=/home/hchung/downloads/jtds-1.2.4.jar -DgroupId=net.sourceforge.jtds -DartifactId=jtds -Dversion=1.2.4 -Dpackaging=jar -DgeneratePom=true
Solution: installing the right jar file (http://ondra.zizka.cz/stranky/programovani/java/maven/log4j-missing-jmx-sun-deps.texy)
mvn install:install-file -Dfile=[downloaded jar file full path] -DgroupId=[group id] -DartifactId=[artifact id] -Dversion=[version] -Dpackaging=jar -DgeneratePom=true
mvn install:install-file -Dfile=/home/hchung/downloads/jtds-1.2.4.jar -DgroupId=net.sourceforge.jtds -DartifactId=jtds -Dversion=1.2.4 -Dpackaging=jar -DgeneratePom=true
Comments