-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsourcecode.html
111 lines (111 loc) · 3.37 KB
/
sourcecode.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>IronJacamar.org - Source code</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="The IronJacamar source code" name="description">
<link href="/stylesheets/styles.css" rel="stylesheet" type="text/css">
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon">
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
<![endif]-->
</head>
<body>
<header>
<section style="padding: -20px auto;">
<a href="/">
<img alt="IronJacamar" src="/images/banner.png">
</a>
</section>
</header>
<article>
<h1>Source Code</h1>
<a href="http://www.github.com/ironjacamar">
<img alt="GitHub" src="/images/github_32.png">
</a>
<p></p>
The IronJacamar project is hosted on
<a href="http://www.github.com/">GitHub</a>
under the
<a href="http://www.github.com/ironjacamar">IronJacamar</a>
organization.
<p></p>
Our code is hosted in the
<a href="http://www.github.com/ironjacamar/ironjacamar">IronJacamar</a>
repository.
<p></p>
The code for this web site is hosted in the
<a href="http://www.github.com/ironjacamar/ironjacamar.org">IronJacamar.org</a>
repository.
<h2>License</h2>
IronJacamar 2.x is licensed under
<a href="http://www.eclipse.org/legal/epl-v10.html">Eclipse Public License v1.0</a>
<p></p>
IronJacamar 1.x is licensed under
<a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html">GNU Lesser Public License 2.1</a>
<h2>Building</h2>
<h3>IronJacamar 2.x</h3>
IronJacamar 2.x will use
<a href="http://www.gradle.org">Gradle</a>
<h3>IronJacamar 1.x</h3>
IronJacamar 1.x uses
<a href="http://ant.apache.org">Apache Ant</a>
and
<a href="http://ant.apache.org/ivy">Apache Ivy</a>
for its build environment. Consult the
<a href="/documentation.html">developer guide</a>
for more information.
<p></p>
Standard:
<div class="code">
ant clean sjc
</div>
<p></p>
Release:
<div class="code">
ant -Declipse.home=/path/to/eclipse clean release
</div>
<h2>Running</h2>
<div class="code">
cd ironjacamar-VERSION/bin
<br>
./run.sh
</div>
<h2>Jenkins</h2>
<a href="http://ironjacamar.ci.cloudbees.com/">
<img alt="CloudBees" src="http://www.cloudbees.com/sites/default/files/Button-Built-on-CB-1.png">
</a>
<br>
<br>
</article>
<footer>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about.html">About</a>
</li>
<li>
<a href="/download.html">Download</a>
</li>
<li>
<a href="/documentation.html">Documentation</a>
</li>
<li>
<a href="/community.html">Community</a>
</li>
<li>
<a href="/sourcecode.html">Source Code</a>
</li>
<li>
<a href="/issues.html">Issues</a>
</li>
</ul>
<a href="http://www.redhat.com">
<img alt="Proudly sponsored by Red Hat" src="/images/redhat_logo.png">
</a>
</footer>
</body>
</html>