This repository has been archived by the owner on Dec 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
137 lines (117 loc) · 5.43 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>about</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A powerfull pure Java build and automation tool">
<meta name="author" content="Jerome Angibaud">
<meta name="keywords" content="build,java,tool,automation,maven,ant,gradle,buildr,sbt,make,compiler,tester,jacoco,pure java build tool,java build tool,build tool,100% java build tool">
<meta name="generator" content="JBake">
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- <link href="css/bootstrap.min.css" rel="stylesheet"> -->
<link href="css/asciidoctor.css" rel="stylesheet">
<link href="css/base.css" rel="stylesheet">
<link href="css/prettify.css" rel="stylesheet">
<link href="css/jerkar.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<!--<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">-->
<link rel="shortcut icon" href="favicon.ico">
<!-- highlight.js -->
<script src="js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<link rel="stylesheet" href="css/highlight-idea.css">
<!-- sidebar css -->
<link href="css/sidebar.css" rel="stylesheet">
</head>
<body onload="prettyPrint()">
<div id="wrap">
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand">
<img style="max-width:80px;margin-top: -10px;" src="img/logo/PNG-04.png">
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="https://github.com/jerkar/jerkar/blob/master/org.jerkar.core/src/main/doc/Getting%20Started.md">Getting Started</a></li>
<li><a href="https://github.com/jerkar/jerkar/tree/master/org.jerkar.core/src/main/doc/Reference%20Guide">Reference Guide</a></li>
<li><a href="doc/reference.html">Reference Guide (Single Page)</a></li>
<li><a href="https://github.com/jerkar/jerkar-examples">Examples</a></li>
<li><a href="https://github.com/jerkar/jerkar/blob/master/org.jerkar.core/src/main/doc/FAQ.md">Frequently Asked Questions</a></li>
<li><a href="javadoc/index.html">Javadoc</a></li>
</ul>
</li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<p>
<h2>Contributors</h2><p>People below may have contributed by writing code, scripts, documentation or providing meaningful ideas.</p>
<ul>
<li><p><a href="https://github.com/djeang">Jérôme Angibaud</a></p></li>
<li><p>Patrick Santana</p></li>
</ul>
</p>
<hr />
</div>
<div id="push"></div>
</div>
<div id="footer">
<div class="container">
<p class="muted credit">© 2014 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.3.2</a></p>
</div>
</div>
<!-- javascript =========================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/prettify.js"></script>
<script>
lastSelect = null;
$('.liexpandable').click(function(evt) {
var li = $(evt.target).parents("li").first();
var ul = li.find(".sub-menu").first();
console.log(ul.is(':visible'));
evt.stopPropagation();
if (ul.is(':visible') && li.html() !== lastSelect) {
lastSelect = li.html();
return;
}
lastSelect = li.html();
ul.toggle();
});
</script>
<!-- Google Analytics -->
<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-103449580-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>