-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
44 additions
and
11 deletions.
There are no files selected for viewing
Submodule core
updated
5 files
+2 −2 | .idea/libraries/bld.xml | |
+ − | lib/bld/bld-wrapper.jar | |
+1 −1 | lib/bld/bld-wrapper.properties | |
+10 −0 | src/bld/java/rife/AbstractRife2Build.java | |
+0 −9 | src/bld/java/rife/CoreBuild.java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; |