일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SpringBoot
- myBatis
- Source
- Spring Boot
- MySQL
- PostgreSQL
- Tomcat
- JDBC
- Exception
- 설정
- Open Source
- MSSQL
- Core Java
- maven
- 오픈소스
- IntelliJ
- oracle
- error
- jpa
- Docker
- Eclipse
- STS
- 문서
- ubuntu
- Thymeleaf
- spring
- AJAX
- JavaScript
- git
- Python
- Today
- Total
헤르메스 LIFE
javax.websocket:javax.websocket-api:jar -> duplicate declaration of version 본문
javax.websocket:javax.websocket-api:jar -> duplicate declaration of version
헤르메스의날개 2020. 11. 18. 23:35[WARNING]
[WARNING] Some problems were encountered while building the effective model for project:mysifw:war:1.0.0
[WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: javax.websocket:javax.websocket-api:jar -> duplicate declaration of version ${javax.websocket.version} @ line 440, column 15
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
dependencies > dependency 아래 중복된 코드가 존재함.
<dependencies>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>${javax.websocket.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>${javax.websocket.version}</version>
<scope>provided</scope>
</dependency>