Interesting. I see: > Durendal:antlr4-mvn russgold$ mvn clean compile > [INFO] Scanning for projects... > [INFO] > [INFO] > ------------------------------------------------------------------------ > [INFO] Building antlr4-mvn 1.0-SNAPSHOT > [INFO] > ------------------------------------------------------------------------ > [INFO] > [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ antlr4-mvn --- > [INFO] Deleting /Users/russgold/projects/exercises/antlr4-mvn/target > [INFO] > [INFO] --- antlr4-maven-plugin:4.7:antlr4 (antlr) @ antlr4-mvn --- > [INFO] ANTLR 4: Processing source directory > /Users/russgold/projects/exercises/antlr4-mvn/src/main/antlr4 > [INFO] Processing grammar: Grammar.g4 > [INFO] > [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ > antlr4-mvn --- > [INFO] Using 'UTF-8' encoding to copy filtered resources. > [INFO] skip non existing resourceDirectory > /Users/russgold/projects/exercises/antlr4-mvn/src/main/resources > [INFO] > [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ antlr4-mvn > --- > [INFO] Changes detected - recompiling the module! > [INFO] Compiling 5 source files to > /Users/russgold/projects/exercises/antlr4-mvn/target/classes > [INFO] > ------------------------------------------------------------------------ > [INFO] BUILD SUCCESS > [INFO] > ------------------------------------------------------------------------ > [INFO] Total time: 1.496 s > [INFO] Finished at: 2017-10-29T19:27:15-04:00 > [INFO] Final Memory: 22M/378M > [INFO] > ------------------------------------------------------------------------
What version of maven are you using? What JDK? > Durendal:antlr4-mvn russgold$ mvn -version > Apache Maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; > 2017-04-03T15:39:06-04:00) > Maven home: /opt/local/share/java/maven3 > Java version: 1.8.0_60, vendor: Oracle Corporation > Java home: /Library/Java/JavaVirtualMachines/jdk1.8.0_60.jdk/Contents/Home/jre > Default locale: en_US, platform encoding: UTF-8 > OS name: "mac os x", version: "10.12.6", arch: "x86_64", family: "mac" - Russ > On Oct 29, 2017, at 7:07 PM, R0b0t1 <r03...@gmail.com> wrote: > > Hello friends, > > On Sun, Oct 29, 2017 at 2:43 AM, Karl Heinz Marbaise <khmarba...@gmx.de> > wrote: >> Hi, >> >> can make a test project on Github/gitlab etc. >> >> Kind regards >> Karl Heinz Marbaise >> > > Here is a repository: https://github.com/R030t1/antlr4-mvn. You should > be able to run `mvn compile` to receive the errors I am receiving. > > > On Sun, Oct 29, 2017 at 8:10 AM, Robert Patrick > <robert.patr...@oracle.com> wrote: >> Most likely, you need to add a compile-time dependency on the antlr runtime >> library, where the missing class is located. >> >> <dependency> >> <groupId>org.antlr</groupId> >> <artifactId>antlr4-runtime</artifactId> >> <version>4.7</version> >> </dependency> >> > > It seems this was it, thank you. I am not sure why this is not > mentioned anywhere. > > Cheers, > R0b0t1 > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@maven.apache.org > For additional commands, e-mail: users-h...@maven.apache.org >