1# JavaParser 2 3[](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.javaparser%22%20AND%20a%3A%22javaparser-core%22) 4[](https://travis-ci.org/javaparser/javaparser) 5[](https://coveralls.io/github/javaparser/javaparser?branch=master) 6[](https://gitter.im/javaparser/javaparser?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 7[](LICENSE) 8 9This project contains a set of libraries implementing a Java 1.0 - Java 12 Parser with advanced analysis functionalities. 10 11Our main site is at [JavaParser.org](http://javaparser.org) 12 13## Setup 14 15The project binaries are available in Maven Central. 16 17We strongly advise users to adopt Maven, Gradle or another build system for their projects. 18If you are not familiar with them we suggest taking a look at the maven quickstart projects 19([javaparser-maven-sample](https://github.com/javaparser/javaparser-maven-sample), 20[javasymbolsolver-maven-sample](https://github.com/javaparser/javasymbolsolver-maven-sample)). 21 22Just add the following to your maven configuration or tailor to your own dependency management system. 23 24[Please refer to the Migration Guide when upgrading from 2.5.1 to 3.0.0+](https://github.com/javaparser/javaparser/wiki/Migration-Guide) 25 26**Maven**: 27 28```xml 29<dependency> 30 <groupId>com.github.javaparser</groupId> 31 <artifactId>javaparser-symbol-solver-core</artifactId> 32 <version>3.14.9</version> 33</dependency> 34``` 35 36**Gradle**: 37 38``` 39implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.14.9' 40``` 41 42Since Version 3.5.10, the JavaParser project includes the JavaSymbolSolver. 43While JavaParser generates an Abstract Syntax Tree, JavaSymbolSolver analyzes that AST and is able to find 44the relation between an element and its declaration (e.g. for a variable name it could be a parameter of a method, providing information about its type, position in the AST, ect). 45 46Using the dependency above will add both JavaParser and JavaSymbolSolver to your project. If you only need the core functionality of parsing Java source code in order to traverse and manipulate the generated AST, you can reduce your projects boilerplate by only including JavaParser to your project: 47 48**Maven**: 49 50```xml 51<dependency> 52 <groupId>com.github.javaparser</groupId> 53 <artifactId>javaparser-core</artifactId> 54 <version>3.14.9</version> 55</dependency> 56``` 57 58**Gradle**: 59 60``` 61implementation 'com.github.javaparser:javaparser-core:3.14.9' 62``` 63 64Since version 3.6.17 the AST can be serialized to JSON. 65There is a separate module for this: 66 67**Maven**: 68 69```xml 70<dependency> 71 <groupId>com.github.javaparser</groupId> 72 <artifactId>javaparser-core-serialization</artifactId> 73 <version>3.14.9</version> 74</dependency> 75``` 76 77**Gradle**: 78 79``` 80implementation 'com.github.javaparser:javaparser-core-serialization:3.14.9' 81``` 82 83## How To Compile Sources 84 85If you checked out the project from GitHub you can build the project with maven using: 86 87``` 88mvn clean install 89``` 90 91If you checkout the sources and want to view the project in an IDE, it is best to first generate some of the source files; otherwise you will get many compilation complaints in the IDE. (mvn clean install already does this for you.) 92 93``` 94mvn javacc:javacc 95``` 96 97If you modify the code of the AST nodes, specifically if you add or remove fields or node classes, 98the code generators will update a lot of code for you. 99The `run_metamodel_generator.sh` script will rebuild the metamodel, 100which is used by the code generators which are run by `run_core_generators.sh` 101Make sure that `javaparser-core` at least compiles before you run these. 102 103## More information 104 105#### [JavaParser.org](https://javaparser.org) is the main information site. 106 107## License 108 109JavaParser is available either under the terms of the LGPL License or the Apache License. You as the user are entitled to choose the terms under which adopt JavaParser. 110 111For details about the LGPL License please refer to [LICENSE.LGPL](ttps://github.com/javaparser/javaparser/blob/master/LICENSE.LGPL). 112 113For details about the Apache License please refer to [LICENSE.APACHE](ttps://github.com/javaparser/javaparser/blob/master/LICENSE.APACHE). 114