This repository was archived by the owner on Jan 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
106 lines (78 loc) · 4.35 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>JavaParser - About</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
<link href="https://fonts.googleapis.com/css?family=Courgette" rel="stylesheet">
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body>
<!--<div id="logo">
</div>-->
<section class="page-header" >
<h1 class="project-name title-font">JavaParser</h1>
<h2 class="project-tagline">Process Java code programmatically</h2>
</section>
<section class="navigation">
<ul>
<li class="selected"><a href="index.html">Home</a></li>
<li><a href="gettingstarted.html">Getting started</a>
<li><a href="about.html">About</a>
<li><a href="contributing.html">Contributing</a>
<li><a href="presentations.html">Presentations</a>
<li class="last"><a href="https://github.com/javaparser">on GitHub</a>
</ul>
</section>
<section class="main-content">
<h2>Resources</h2>
<p>Some posts on JavaParser:</p>
<ul>
<li><a href="https://tomassetti.me/lexical-preservation-javaparser/">Implementing Lexical Preservation for JavaParser </a>
<li><a href="https://tomassetti.me/observers-ast-nodes-javaparser/">Observers for AST nodes in JavaParser</a>
<li><a href="https://tomassetti.me/getting-started-with-javaparser-analyzing-java-code-programmatically/">Getting started with JavaParser: analyzing Java Code programmatically </a>
<li><a href="https://tomassetti.me/java-comments-parsing/">Java comments parsing </a>
</ul>
<h2>Logo</h2>
<p>Do you want to show your love for JavaParser? Show our logo!</p>
<center>
<img src="images/logo.png">
</center>
<h2>Projects using it</h2>
<p>There are over 50 libraries on Maven which depends on JavaParser, around 100 projects on GitHub and a number of commercial projects.</p>
<p>This is a very incomplete list:</p>
<ul>
<li><a href="http://jooby.org/">Jooby</a>, a micro web framework for Java</li>
<li><a href="http://www.mybatis.org/">MyBatis Generator</a></li>
<li><a href="http://getgauge.io/">Gauge Java</a>, a Test Automation suite from ThoughtWorks</li>
<li><a href="http://redis.paluch.biz/">Lettuce</a>, an advanced Java Redis client</li>
<li><a href="https://github.com/moditect/moditect/">ModiTect</a>, a generator for Java 9 module descriptors</li>
</ul>
<h2>Contributors</h2>
<p>The maintainer of the JavaParser project is <b>Danny van Bruggen</b> a.k.a. <i>Matozoid</i>.</p>
<p>There are over 40 persons who contributed to JavaParser. Among them a few have more commits than others: <a href="https://tomassetti.me">Federico Tomassetti</a>, <a href="http://nicholaspaulsmith.com/">Nicholas Smith</a> (a.k.a. <i>SmiddyPence</i>), Cruz Maximilien (a.k.a. <i>DeepSnowNeeL</i>), and Sebastian Kirsch</p>
<h2>History</h2>
<p>
The parser is based on work by Sreenivasa Viswanadha and Júlio Vilmar Gesser. The original project, now inactive, was originally hosted at Google Code and supported only parsing Java 1.5.
</p>
<p>Matozoid picked it up and put it on GitHub. He started accepting patches. Over time a community grew around it. In 2015 Federico Tomassetti started working on the JavaSymbolSolver which in 2016 was included in the JavaParser set of tools.
</p>
<footer class="site-footer">
<span class=""><a href="https://github.com/javaparser">JavaParser</a> is maintained by Open-Source enthusiasts.</span>
</footer>
</section>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-89097232-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>