일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오픈소스
- myBatis
- Spring Boot
- 설정
- Docker
- Python
- AJAX
- 문서
- MSSQL
- oracle
- Eclipse
- PostgreSQL
- MySQL
- git
- Tomcat
- jpa
- Source
- maven
- Open Source
- spring
- JavaScript
- ubuntu
- Exception
- IntelliJ
- SpringBoot
- Thymeleaf
- STS
- Core Java
- JDBC
- error
- 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>