메뉴 건너뛰기

Bigdata, Semantic IoT, Hadoop, NoSQL

Bigdata, Hadoop ecosystem, Semantic IoT등의 프로젝트를 진행중에 습득한 내용을 정리하는 곳입니다.
필요한 분을 위해서 공개하고 있습니다. 문의사항은 gooper@gooper.com로 메일을 보내주세요.


*예제 : https://www.lagomframework.com/documentation/1.3.x/java/GettingStartedMaven.html


eclipe를 이용하여 building할때 pom.xml파일의 ${scala.binary.version}부분에 오류가 발생하면서 building이 되지 않는 경우는

pom.xml파일의 Overview를 열어서 중간의 Properties 부분에서 "Create"를 이용하여 Name에 scala.binary.version을 넣고 Value에 적용할 scala버젼을 등록하고(현재기준, 2.11 혹는 2.12를 지정) goal에 lagom:runAll를 입력하고 Run하면 빌드/실행까지 시켜준다.


* console에서 작업하는 경우는 "MAVEN_OPTS="-Xms512M -Xmx1024M -Xss2M -XX:MaxMetaspaceSize=1024M -Dscala.binary.version=2.11" mvn lagom:runAll"을 입력하여 실행시켜준다.



------------------오류내용--------

$ mvn lagom:runAll
[INFO] Scanning for projects...
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] 'dependencies.dependency.artifactId' for com.lightbend.lagom:lagom-javadsl-api_${scala.binary.version}:jar with value 'lagom-javadsl-api_${scala.binary.version}' does not match a valid id pattern. @ com.example.hello:hello-api:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-apipom.xml, line 19, column 25
[ERROR] 'dependencies.dependency.version' for com.lightbend.lagom:lagom-javadsl-api_${scala.binary.version}:jar is missing. @ com.example.hello:hello-api:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-apipom.xml, line 17, column 21
[ERROR] 'dependencies.dependency.artifactId' for com.lightbend.lagom:lagom-javadsl-kafka-broker_${scala.binary.version}:jar with value 'lagom-javadsl-kafka-broker_${scala.binary.version}' does not match a valid id pattern. @ com.example.hello:hello-api:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-apipom.xml, line 23, column 25
[ERROR] 'dependencies.dependency.version' for com.lightbend.lagom:lagom-javadsl-kafka-broker_${scala.binary.version}:jar is missing. @ com.example.hello:hello-api:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-apipom.xml, line 21, column 21
[ERROR] 'dependencies.dependency.artifactId' for com.lightbend.lagom:lagom-javadsl-server_${scala.binary.version}:jar with value 'lagom-javadsl-server_${scala.binary.version}' does not match a valid id pattern. @ com.example.hello:hello-impl:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-implpom.xml, line 24, column 25
[ERROR] 'dependencies.dependency.version' for com.lightbend.lagom:lagom-javadsl-server_${scala.binary.version}:jar is missing. @ com.example.hello:hello-impl:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-implpom.xml, line 22, column 21
[ERROR] 'dependencies.dependency.artifactId' for com.lightbend.lagom:lagom-javadsl-persistence-cassandra_${scala.binary.version}:jar with value 'lagom-javadsl-persistence-cassandra_${scala.binary.version}' does not match a valid id pattern. @ com.example.hello:hello-impl:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-implpom.xml, line 28, column 25
[ERROR] 'dependencies.dependency.version' for com.lightbend.lagom:lagom-javadsl-persistence-cassandra_${scala.binary.version}:jar is missing. @ com.example.hello:hello-impl:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-implpom.xml, line 26, column 21
[ERROR] 'dependencies.dependency.artifactId' for com.lightbend.lagom:lagom-logback_${scala.binary.version}:jar with value 'lagom-logback_${scala.binary.version}' does not match a valid id pattern. @ com.example.hello:hello-impl:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-implpom.xml, line 32, column 25
[ERROR] 'dependencies.dependency.version' for com.lightbend.lagom:lagom-logback_${scala.binary.version}:jar is missing. @ com.example.hello:hello-impl:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-implpom.xml, line 30, column 21
[ERROR] 'dependencies.dependency.artifactId' for com.typesafe.play:play-netty-server_${scala.binary.version}:jar with value 'play-netty-server_${scala.binary.version}' does not match a valid id pattern . @ com.example.hello:hello-impl:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-implpom.xml, line 36, column 25
[ERROR] 'dependencies.dependency.version' for com.typesafe.play:play-netty-server_${scala.binary.version}:jar is missing. @ com.example.hello:hello-impl:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-implpom.xml, line 34, column 21
[ERROR] 'dependencies.dependency.artifactId' for com.lightbend.lagom:lagom-javadsl-testkit_${scala.binary.version}:jar with value 'lagom-javadsl-testkit_${scala.binary.version}' does not match a valid id pattern. @ com.example.hello:hello-impl:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-implpom.xml, line 40, column 25
[ERROR] 'dependencies.dependency.version' for com.lightbend.lagom:lagom-javadsl-testkit_${scala.binary.version}:jar is missing. @ com.example.hello:hello-impl:[unknown-version], C:devworkspaceHelloLagommy-first-systemhello-implpom.xml, line 38, column 21

번호 제목 글쓴이 날짜 조회 수
540 spark-shell을 실행하면 "Attempted to request executors before the AM has registered!"라는 오류가 발생하면 총관리자 2018.06.08 542
539 SCM서비스를 추가하는 동안 Unexpected error. Unable to verify database connection. 오류발생시 확인 사항 총관리자 2018.06.08 196
538 Cloudera Manager에서 "Mismatched CDH versions: host has NONE but role expects 5 Suppress..."와 같이 오류 발생시 확인사항 총관리자 2018.06.06 228
537 JAVA_HOME을 명시적으로 지정하는 방법 총관리자 2018.06.04 165
536 spark 시동중 applicationHistory 로그 디렉토리가 없다고 하면서 기동되지 않는 경우 총관리자 2018.06.01 153
535 impala2를 Cloudera Manager가 아닌 수동으로 설치하는 방법 총관리자 2018.05.30 280
534 MapReduce2.0(YARN)기반의 CDH5 설치시 생성되는 사용자및 권한 부여 총관리자 2018.05.30 190
533 HUE를 사용할 사용자를 추가 하는 절차 총관리자 2018.05.29 367
532 JobHistory 서버 기동시 HDFS상에 특정 폴더를 생성할 수 없어서 기동하지 못하는 경우 조치 총관리자 2018.05.29 2898
531 DataNode를 기동할때 "Block pool ID needed, but service not yet registered with NN" 오류 발생에 따른 조치사항 총관리자 2018.05.28 961
530 Cloudera Manager설치및 Uninstall 방법(순서) 총관리자 2018.05.28 1642
529 우분투 서버에 GUI로 접속하기 file 총관리자 2018.05.27 212
528 Cloudera Manager재설치하는 동안 "Host is in bad health"오류가 발생하는 경우 확인/조치 사항 총관리자 2018.05.24 88
527 "You are running Cloudera Manager in non-production mode.." warning메세지가 나타나지 않게 조치하는 방법 총관리자 2018.05.23 64
526 oozie db변경후 재기동시 "Table 'oozie.VALIDATE_CONN' doesn't exist" 오류 발생시 조치방법 총관리자 2018.05.23 244
525 Embedded PostgreSql설정을 외부의 MariaDB로변경하기 [1] 총관리자 2018.05.22 169
524 CDH 5.14.2 설치중 agent설치에서 실패하는 경우 확인/조치 총관리자 2018.05.22 450
523 Cluster Install -> Provide Login Credentials에서 root가 아닌 다른 사용자를 지정하는 경우 "Exhausted available authentication methods"오류 발생시 조치방법 총관리자 2018.05.22 141
522 Cloudera Hadoop and Spark Developer Certification 준비(참고) 총관리자 2018.05.16 32
521 tar를 이용한 리눅스 백업 총관리자 2018.05.13 35

A personal place to organize information learned during the development of such Hadoop, Hive, Hbase, Semantic IoT, etc.
We are open to the required minutes. Please send inquiries to gooper@gooper.com.

위로