Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b3cf01d
add plugin classpath scanning
horakivo Feb 13, 2026
b7557c5
Working clean job
horakivo Feb 13, 2026
196119a
Add compiler plugin
horakivo Feb 16, 2026
796e94b
Add support v3 plugins
horakivo Feb 17, 2026
4c8d36c
Reverting changes to license + disabling license check
horakivo Feb 24, 2026
168d64e
Adding better handling for missing classpath plugins
horakivo Feb 24, 2026
ea627b9
Surefire works on native maven
horakivo Feb 24, 2026
84f4ef0
Able to build maven
horakivo Feb 26, 2026
004eb1d
Adding build and run scripts
horakivo Feb 26, 2026
1009563
removing hardcoded path to java home
horakivo Feb 26, 2026
8642d44
Changing entry point from CLI to cling
horakivo Feb 28, 2026
3d60c54
adding dynamic classloading flag
horakivo Feb 28, 2026
f68df0e
removing hard cast of maven logger
horakivo Mar 4, 2026
60c94b4
fix: surefire artifacts are resolved when needed
horakivo Mar 8, 2026
3a929c9
adding github workflow for publish
horakivo Mar 9, 2026
aed0881
chore: remove .github junk
horakivo Mar 9, 2026
c636661
fix: wrong repo url
horakivo Mar 9, 2026
fa82148
fix: adding cleaning to gh ci
horakivo Mar 9, 2026
3d96517
fix: removing snapshot when deployed so that it is not timestamped
horakivo Mar 10, 2026
4b2a3a1
feat: adding new reflection config for crema
horakivo Mar 16, 2026
b19d6da
feat: adding jmvn for testing
horakivo Mar 16, 2026
58fd2aa
feat: copying reflection data
horakivo Mar 22, 2026
3b5d53c
feat: remove java.lang.* from reflection config
horakivo Mar 22, 2026
5695166
feat: remove java.util.* from reflection config
horakivo Mar 22, 2026
76e588a
feat: remove org.apache.maven.plugin.* from reflection config
horakivo Mar 22, 2026
7949301
feat: remove org.apache.maven.artifact.* from reflection config
horakivo Mar 22, 2026
c9f9366
feat: shader plugin is working
horakivo Mar 22, 2026
1f5ca6b
feat: reached runtime reflection parameters limitation
horakivo Mar 24, 2026
cadc229
chore(deps): bump org.codehaus.plexus:plexus-utils
dependabot[bot] Mar 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 0 additions & 48 deletions .github/ISSUE_TEMPLATE/BUG.yml

This file was deleted.

35 changes: 0 additions & 35 deletions .github/ISSUE_TEMPLATE/FEATURE.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/ci-extensions.xml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/ci-mimir-daemon.properties

This file was deleted.

23 changes: 0 additions & 23 deletions .github/ci-mimir-session.properties

This file was deleted.

66 changes: 0 additions & 66 deletions .github/dependabot.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/pull_request_template.md

This file was deleted.

28 changes: 0 additions & 28 deletions .github/release-drafter-3.x.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/release-drafter.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>github</id>
<username>${env.GITHUB_ACTOR}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
</servers>
</settings>
Loading