I downloaded the Mojarra source code from here. I also downloaded the pom file to build the source code files. It turns out that the code structure is different from the original and I need to create directories and but the files 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 directories src
, main
, java
and resources
and I placed the source code directories in those directories but it's not working. What is the proper way to place the source code files into the the package?
Best wishes