Home

CATEGORY
  • iplug2 (6)
  • Raspberry Pi (5)
  • Amazon Web Service (5)
  • note (4)
  • Google Cloud Platform (3)
  • Unclassified (2)
  • Node.js (2)
  • reactjs (1)
  • jQuery (1)
  • Spring Boot (1)
  • Project (1)
  • Linux (1)
  • LINE (1)
  • [Spring Boot] Dependencies에 Velocity 추가 후 빌드 에러 (Version)

    Goorm IDE로 Spring Boot 컨테이너 만든 후 pom.xml에 Velocity를 추가했는데 아래 에러와 함께 빌드가 안 되었다.

    [ERROR]    
    'dependencies.dependency.version' for org.springframework.boot:spring-boot-starter-velocity:jar is missing. @ line 37, column 21
    

    오류 해결

    빌드가 안 되었었던 이유는 Version 정보가 없어서였다. pom.xml에 버전 정보를 추가시켜 이렇게 저장하였더니 빌드되었다.

        
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-velocity</artifactId>
        <version>1.1.3.RELEASE</version>
    </dependency>