Home | History | Annotate | only in /external/javaparser
Up to higher level directory
NameDateSize
.idea/21-Aug-2018
.travis.yml21-Aug-2018458
appveyor.yml21-Aug-2018837
changelog.md21-Aug-201828.3K
CONTRIBUTING.md21-Aug-20182.5K
dev-files/21-Aug-2018
javaparser-core/21-Aug-2018
javaparser-core-generators/21-Aug-2018
javaparser-metamodel-generator/21-Aug-2018
javaparser-parent.iml21-Aug-20181.2K
javaparser-symbol-solver-core/21-Aug-2018
javaparser-symbol-solver-logic/21-Aug-2018
javaparser-symbol-solver-model/21-Aug-2018
javaparser-symbol-solver-testing/21-Aug-2018
javaparser-testing/21-Aug-2018
LICENSE21-Aug-2018382
LICENSE.APACHE21-Aug-201811.1K
LICENSE.GPL21-Aug-201835K
LICENSE.LGPL21-Aug-20187.6K
pom.xml21-Aug-201812.8K
readme.md21-Aug-20184.1K
run_core_generators.sh21-Aug-2018439
run_metamodel_generator.sh21-Aug-2018557

readme.md

      1 # JavaParser
      2 
      3 [![Maven Central](https://img.shields.io/maven-central/v/com.github.javaparser/javaparser-core.svg)](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.javaparser%22%20AND%20a%3A%22javaparser-core%22)
      4 [![Build Status](https://travis-ci.org/javaparser/javaparser.svg?branch=master)](https://travis-ci.org/javaparser/javaparser)
      5 [![Coverage Status](https://coveralls.io/repos/javaparser/javaparser/badge.svg?branch=master&service=github)](https://coveralls.io/github/javaparser/javaparser?branch=master)
      6 [![Join the chat at https://gitter.im/javaparser/javaparser](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/javaparser/javaparser?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
      7 
      8 This project contains a set of libraries implementing a Java 1.0 - Java 9 Parser with advanced analysis functionalities.
      9 
     10 Our main site is at [JavaParser.org](http://javaparser.org)
     11 
     12 ## Setup
     13 
     14 The project binaries are available in Maven Central. 
     15 
     16 We strongly advises users to adopt Maven, Gradle or another build system for their projects. If you are not familiar with them
     17 we suggest taking a look at the maven quickstart projects 
     18 ([javaparser-maven-sample](https://github.com/javaparser/javaparser-maven-sample), 
     19 [javasymbolsolver-maven-sample](https://github.com/javaparser/javasymbolsolver-maven-sample)).
     20 
     21 Just add the following to your maven configuration or tailor to your own dependency management system.
     22 
     23 [Please refer to the Migration Guide when upgrading from 2.5.1 to 3.0.0+](https://github.com/javaparser/javaparser/wiki/Migration-Guide)
     24 
     25 **Maven**: 
     26 
     27 ```xml
     28 <dependency>
     29     <groupId>com.github.javaparser</groupId>
     30     <artifactId>javaparser-symbol-solver-core</artifactId>
     31     <version>3.5.15</version>
     32 </dependency>
     33 ```
     34 
     35 **Gradle**:
     36 
     37 ```
     38 compile 'com.github.javaparser:javaparser-symbol-solver-core:3.5.15'
     39 ```
     40 
     41 Since Version 3.5.10, the JavaParser project includes the JavaSymbolSolver. 
     42 While JavaParser generates an Abstract Syntax Tree, JavaSymbolSolver analyzes that AST and is able to find 
     43 the 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).
     44 
     45 Using 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:
     46 
     47 **Maven**: 
     48 
     49 ```xml
     50 <dependency>
     51     <groupId>com.github.javaparser</groupId>
     52     <artifactId>javaparser-core</artifactId>
     53     <version>3.5.15</version>
     54 </dependency>
     55 ```
     56 
     57 **Gradle**:
     58 
     59 ```
     60 compile 'com.github.javaparser:javaparser-core:3.5.15'
     61 ```
     62 
     63 ## How To Compile Sources
     64 
     65 If you checked out the project from GitHub you can build the project with maven using:
     66 
     67 ```
     68 mvn clean install
     69 ```
     70 
     71 If 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.)
     72 
     73 ```
     74 mvn javacc:javacc
     75 ```
     76 
     77 If you modify the code of the AST nodes, specifically if you add or remove fields or node classes,
     78 the code generators will update a lot of code for you.
     79 The `run_metamodel_generator.sh` script will rebuild the metamodel,
     80 which is used by the code generators which are run by `run_core_generators.sh`
     81 Make sure that `javaparser-core` at least compiles before you run these.
     82 
     83 ## More information
     84 
     85 #### [JavaParser.org](https://www.javaparser.org) is the main information site.
     86 
     87 ## License
     88 
     89 JavaParser 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.
     90 
     91 For details about the LGPL License please refer to [LICENSE.LGPL](ttps://github.com/javaparser/javaparser/blob/master/LICENSE.LGPL).
     92 
     93 For details about the Apache License please refer to [LICENSE.APACHE](ttps://github.com/javaparser/javaparser/blob/master/LICENSE.APACHE).
     94