Fork me on GitHub
#leiningen
<
2020-11-18
>
Ho0man12:11:11

https://github.com/clov0/leiningen-to-maven-problemi everyone, I'm having problem compiling a project using maven and the leiningen generated pom which already compiles fine in leiningen. I've put the project in this public repository : https://github.com/clov0/leiningen-to-maven-problem And here's the maven build error :

[INFO] Scanning for projects...
[INFO] 
[INFO] ---------------------< hermes.storm:hermes.storm >----------------------
[INFO] Building hermes.storm 0.1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[WARNING] The POM for org.glassfish:javax.el:jar:3.0.1-b06-SNAPSHOT is missing, no dependency information available
[WARNING] The POM for org.glassfish:javax.el:jar:3.0.1-b07-SNAPSHOT is missing, no dependency information available
[WARNING] The POM for org.glassfish:javax.el:jar:3.0.1-b08-SNAPSHOT is missing, no dependency information available
[WARNING] The POM for org.glassfish:javax.el:jar:3.0.1-b11-SNAPSHOT is missing, no dependency information available
[INFO] 
[INFO] --- build-helper-maven-plugin:1.7:add-source (add-source) @ hermes.storm ---
[INFO] Source directory: /home/ho0man/Projects/focus/Storm-Kepper/typhoon-starter/src/java added.
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ hermes.storm ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 0 resource
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ hermes.storm ---
[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
[INFO] Compiling 51 source files to /home/ho0man/Projects/focus/Storm-Kepper/typhoon-starter/target/classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] Source option 5 is no longer supported. Use 6 or later.
[ERROR] Target option 1.5 is no longer supported. Use 1.6 or later.
[INFO] 2 errors 
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  1.549 s
[INFO] Finished at: 2020-11-18T16:17:26+03:30
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project hermes.storm: Compilation failure: Compilation failure: 
[ERROR] Source option 5 is no longer supported. Use 6 or later.
[ERROR] Target option 1.5 is no longer supported. Use 1.6 or later.
[ERROR] -> [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:
[ERROR] [Help 1] 
Would greatly appreciate the help Thanks

Ho0man12:11:04

I've specified the javac target version to 11 in the project.clj