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 138 139 140
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="resources/doc.css" charset="UTF-8" type="text/css" />
<link rel="shortcut icon" href="resources/report.gif" type="image/gif" />
<title>JaCoCo - Development Environment</title>
</head>
<body>
<div class="breadcrumb">
<a href="../index.html" class="el_report">JaCoCo</a> >
<a href="index.html" class="el_group">Documentation</a> >
<span class="el_source">Development Environment</span>
</div>
<div id="content">
<h1>Development Environment</h1>
<h2>Project Hosting</h2>
<p>
The JaCoCo project is hosted on
<a href="https://github.com/jacoco/jacoco">GitHub</a> and can be cloned from
this URL:
</p>
<pre>
https://github.com/jacoco/jacoco.git
</pre>
<p>
We also track all
<a href="https://github.com/jacoco/jacoco/issues">issues</a> and
<a href="https://github.com/jacoco/jacoco/pulls">pull requests</a>
on the GitHub project.
</p>
<h3>IDE</h3>
<p>
JaCoCo development is done with the latest version of
<a href="http://www.eclipse.org/">Eclipse</a>. Please make sure to install
the <a href="http://www.eclipse.org/m2e/">m2e plug-in</a> to get all
dependencies resolved properly. The source tree is organized as a list of
Eclipse projects that can be imported in a Eclipse workspace.
</p>
<p>
Project specific Eclipse settings only exist for the following projects. All
other projects and test projects link to these settings:
</p>
<ul>
<li><code>org.jacoco.core</code></li>
<li><code>org.jacoco.core.test</code></li>
</ul>
<p>
These settings specify various compiler warnings and the standard Eclipse
source formatting rules.
</p>
<h3>JRE/JDK</h3>
<p>
The minimum supported JRE version for JaCoCo is Java 5. To guarantee
compatibility JaCoCo release builds should always be executed using JDK 5.
In addition we run builds with 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17
18, 19, 20, 21, 22, 23, 24, 25 and 26 JDKs.
</p>
<h3>Build</h3>
<p>
The JaCoCo build is based on <a href="http://maven.apache.org/">Maven</a>
and requires at least Maven 3.9.11 and JDK 17.
See the <a href="build.html">build description</a> for details.
</p>
<h3>Continuous Integration</h3>
<p>
We have a list of CI tools directly integrated with our source repository:
</p>
<ul>
<li><a href="https://github.com/jacoco/jacoco/actions">GitHub Actions</a></li>
<li><a href="https://dev.azure.com/JaCoCo-org/JaCoCo/_build">Azure Pipelines</a></li>
</ul>
<p>
CI builds run for master and every pull request.
</p>
<h3>Development Build Artifacts</h3>
<p>
Beside the <a href="http://search.maven.org/#search|ga|1|g%3Aorg.jacoco"> JaCoCo releases</a>
the following build artifacts are automatically available during the
development cycle:
</p>
<ul>
<li><b>Master:</b> The current master is available through the Maven
<a href="repo.html">snapshot repository</a>.</li>
<li><b>Pull Requests:</b> For every pull request the
<a href="https://github.com/jacoco/jacoco/actions">GitHub Actions builds</a>
provide the corresponding all-in-one zip for download. To access the
artifacts go to a summary page of a workflow run corresponding to the pull
request.</li>
</ul>
<h3>Continuous Inspection</h3>
<p>
We track quality issues with our source code with
<a href="https://sonarcloud.io/dashboard?id=org.jacoco:org.jacoco.build">SonarQube</a>.
</p>
<h3>Communication</h3>
<p>
The development team communicates through a mailing list. The list is closed
for non-developers but the archive is
<a href="https://groups.google.com/d/forum/jacoco-dev">public</a>.
Please use the <a href="support.html">support channels</a> to get in touch
with the development team.
</p>
</div>
<div class="footer">
<span class="right"><a href="${jacoco.home.url}">JaCoCo</a> ${qualified.bundle.version}</span>
<a href="license.html">Copyright</a> © ${copyright.years} Mountainminds GmbH & Co. KG and Contributors
</div>
</body>
</html>
|