I downloaded the Mojarra source code from here . I also uploaded a pom file to create source code files. It turns out that the code structure is different from the original one, and I need to create directories, but the files are there.
I created this directory structure:
laptop@Laptop javax.faces-2.1.9-sources]$ tree . |-- pom.xml `-- src `-- main |-- java | |-- com | | `-- sun | | `-- faces ....(other sub directories) | `-- javax | `-- faces ....(other sub directories) `-- resources `-- META-INF `-- MANIFEST.MF
I created the src , main , java and resources directories, and I put the source directories in these directories, but it does not work. What is the correct way to put source code files in a package?
Best wishes
source share