mirror of
https://github.com/ethauvin/bld.git
synced 2025-04-25 16:27:11 -07:00
Javadoc improvements
This commit is contained in:
parent
f15a8d2df2
commit
28e548954f
5 changed files with 44 additions and 11 deletions
|
@ -1,7 +1,10 @@
|
|||
/**
|
||||
* bld is a new build system that allows you to write your build logic in pure Java.
|
||||
* <p>
|
||||
* More information can be found on the <a href="https://rife2.com/bld">`bld` website</a>.
|
||||
* More information can be found on the <a href="https://rife2.com/bld"><code>bld</code> website</a>.
|
||||
* <p>
|
||||
* Note that bld builds on top of the foundation that RIFE2 provides and includes the features
|
||||
* of <a href="https://github.com/rife2/rife2-core">RIFE2/core</a>.
|
||||
*
|
||||
* @since 2.1.0
|
||||
*/
|
||||
|
@ -19,6 +22,7 @@ module rife.bld {
|
|||
exports rife.bld.dependencies;
|
||||
exports rife.bld.dependencies.exceptions;
|
||||
exports rife.bld.help;
|
||||
exports rife.bld.instrument;
|
||||
exports rife.bld.operations;
|
||||
exports rife.bld.operations.exceptions;
|
||||
exports rife.bld.publish;
|
||||
|
|
24
src/main/java/overview.html
Normal file
24
src/main/java/overview.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<html>
|
||||
<body>
|
||||
<p><code>bld</code> is a new build system that allows you to write your build logic in pure Java.</p>
|
||||
|
||||
<p><code>bld</code>'s website is <a href="https://rife2.com/bld">https://rife2.com/bld</a>.</p>
|
||||
<p>The GitHub project is at <a href="https://github.com/rife2/bld">https://github.com/rife2/bld</a></p>
|
||||
<p>The documentation is available at <a href="https://github.com/rife2/bld/wiki">https://github.com/rife2/bld/wiki</a></p>
|
||||
|
||||
<p>Note that bld builds on top of the foundation that RIFE2 provides and includes the features of
|
||||
<a href="https://github.com/rife2/rife2-core">RIFE2/core</a>.</p>
|
||||
|
||||
<script type="text/javascript">
|
||||
window.onload = function () {
|
||||
show('all-packages-table', 'all-packages-table-tab1', 2);
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
#all-packages-table-tab0 {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
</body>
|
||||
</html>
|
10
src/main/java/rife/bld/instrument/package-info.java
Normal file
10
src/main/java/rife/bld/instrument/package-info.java
Normal file
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
* Copyright 2001-2024 Geert Bevin (gbevin[remove] at uwyn dot com)
|
||||
* Licensed under the Apache License, Version 2.0 (the "License")
|
||||
*/
|
||||
|
||||
/**
|
||||
* Provides functionalities for bytecode instrumentation.
|
||||
* @since 2.1
|
||||
*/
|
||||
package rife.bld.instrument;
|
Loading…
Add table
Add a link
Reference in a new issue