깃허브에서 가져와서 임포트 프로젝트를 하게되면
pom.xml 부분에서
<execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>scala-test-compile</id>
<phase>process-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
부분이 에러가 나게되고
maven install하게되면 아래와 같은 에러가 나옵니다 ㅠ
스칼라쪽 문제인거같아서 이것저것 해보다가 3일째 문의드립니다...
혹시 같은 증상 있으신분 있을까요..? neon 3,java8입니다..
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Open Korean Text Processor 2.2.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ open-korean-text ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 37 resources
[INFO]
[INFO] --- scala-maven-plugin:3.2.0:add-source (scala-compile-first) @ open-korean-text ---
[INFO] Add Source directory: C:\Users\C12A-007-PC\git\open-korean-text\src\main\scala
[INFO] Add Test Source directory: C:\Users\C12A-007-PC\git\open-korean-text\src\test\scala
[INFO]
[INFO] --- scala-maven-plugin:3.2.0:compile (scala-compile-first) @ open-korean-text ---
[INFO] C:\Users\C12A-007-PC\git\open-korean-text\src\main\java:-1: info: compiling
[INFO] C:\Users\C12A-007-PC\git\open-korean-text\src\main\scala:-1: info: compiling
[INFO] Compiling 31 source files to C:\Users\C12A-007-PC\git\open-korean-text\target\classes at 1527732936354
[ERROR] java.lang.NoClassDefFoundError: scala/reflect/internal/Trees
[INFO] at java.lang.Class.getDeclaredMethods0(Native Method)
[INFO] at java.lang.Class.privateGetDeclaredMethods(Unknown Source)
[INFO] at java.lang.Class.privateGetMethodRecursive(Unknown Source)
[INFO] at java.lang.Class.getMethod0(Unknown Source)
[INFO] at java.lang.Class.getMethod(Unknown Source)
[INFO] at scala_maven_executions.MainHelper.runMain(MainHelper.java:155)
[INFO] at scala_maven_executions.MainWithArgsInFile.main(MainWithArgsInFile.java:26)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.322 s
[INFO] Finished at: 2018-05-31T11:15:36+09:00
[INFO] Final Memory: 12M/220M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal net.alchim31.maven:scala-maven-plugin:3.2.0:compile (scala-compile-first) on project open-korean-text: wrap: org.apache.commons.exec.ExecuteException: Process exited with an error: -10000 (Exit value: -10000) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles: