mirror of
https://github.com/ethauvin/bld.git
synced 2025-04-25 08:17:11 -07:00
Javadoc improvements
This commit is contained in:
parent
f15a8d2df2
commit
28e548954f
5 changed files with 44 additions and 11 deletions
2
core
2
core
|
@ -1 +1 @@
|
||||||
Subproject commit b94124fe6d0fd40974f3e882f2ac1335f095ce80
|
Subproject commit 5fdaf6def28f0ada93f5da8a47e1ffe86f7ac13f
|
|
@ -79,7 +79,10 @@ public class BldBuild extends AbstractRife2Build {
|
||||||
.sourceFiles(FileUtils.getJavaFileList(core_src_main_java_dir))
|
.sourceFiles(FileUtils.getJavaFileList(core_src_main_java_dir))
|
||||||
.javadocOptions()
|
.javadocOptions()
|
||||||
.docTitle("<a href=\"https://rife2.com/bld\">bld</a> " + version())
|
.docTitle("<a href=\"https://rife2.com/bld\">bld</a> " + version())
|
||||||
.overview(new File(srcMainJavaDirectory(), "overview.html"));
|
.overview(new File(srcMainJavaDirectory(), "overview.html"))
|
||||||
|
.addAll(List.of("--allow-script-in-comments",
|
||||||
|
"-group", "bld", "rife.bld*",
|
||||||
|
"-group", "RIFE2/core", "rife:rife.cmf*:rife.config*:rife.database*:rife.datastructures*:rife.engine*:rife.forms*:rife.instrument*:rife.ioc*:rife.resources*:rife.selector*:rife.template*:rife.tools*:rife.validation*:rife.xml*"));
|
||||||
|
|
||||||
publishOperation()
|
publishOperation()
|
||||||
.repository(version.isSnapshot() ? repository("rife2-snapshots") : repository("rife2-releases"))
|
.repository(version.isSnapshot() ? repository("rife2-snapshots") : repository("rife2-releases"))
|
||||||
|
@ -109,14 +112,6 @@ public class BldBuild extends AbstractRife2Build {
|
||||||
new PublishArtifact(zipBldOperation.destinationFile(), "", "zip"));
|
new PublishArtifact(zipBldOperation.destinationFile(), "", "zip"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void javadoc()
|
|
||||||
throws Exception {
|
|
||||||
javadocOperation().executeOnce(() -> javadocOperation()
|
|
||||||
.fromProject(this)
|
|
||||||
.sourceFiles(FileUtils.getJavaFileList(buildGeneratedDir)));
|
|
||||||
}
|
|
||||||
|
|
||||||
final ZipOperation zipBldOperation = new ZipOperation();
|
final ZipOperation zipBldOperation = new ZipOperation();
|
||||||
@BuildCommand(value = "zip-bld", summary = "Creates the bld zip archive")
|
@BuildCommand(value = "zip-bld", summary = "Creates the bld zip archive")
|
||||||
public void zipBld()
|
public void zipBld()
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
/**
|
/**
|
||||||
* bld is a new build system that allows you to write your build logic in pure Java.
|
* bld is a new build system that allows you to write your build logic in pure Java.
|
||||||
* <p>
|
* <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
|
* @since 2.1.0
|
||||||
*/
|
*/
|
||||||
|
@ -19,6 +22,7 @@ module rife.bld {
|
||||||
exports rife.bld.dependencies;
|
exports rife.bld.dependencies;
|
||||||
exports rife.bld.dependencies.exceptions;
|
exports rife.bld.dependencies.exceptions;
|
||||||
exports rife.bld.help;
|
exports rife.bld.help;
|
||||||
|
exports rife.bld.instrument;
|
||||||
exports rife.bld.operations;
|
exports rife.bld.operations;
|
||||||
exports rife.bld.operations.exceptions;
|
exports rife.bld.operations.exceptions;
|
||||||
exports rife.bld.publish;
|
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