Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
06c7a6e
Merge pull request #16 from andrei1058/master
andrei1058 Feb 9, 2023
198c8ed
fix prefix and suffix length
andrei1058 Feb 17, 2023
d6c01d4
Merge remote-tracking branch 'origin/develop' into develop
andrei1058 Feb 17, 2023
9decf18
fix prefix and suffix length
andrei1058 Feb 17, 2023
4877a0d
fix bw #662
andrei1058 Feb 17, 2023
684d894
check identifier length
andrei1058 Feb 25, 2023
fe6f92c
Merge branch 'master' into develop
andrei1058 Jun 25, 2023
e049569
Add 1_20_R1 Support (#28)
JT122406 Jun 25, 2023
48408c6
fix first line getting skipped
andrei1058 Oct 14, 2023
a80969b
fix placeholders being registered after title, fix first line getting…
andrei1058 Oct 14, 2023
8971c2b
fix placeholders being registered after title, fix first line getting…
andrei1058 Oct 15, 2023
70ddd0c
Merge branch 'master' into develop
andrei1058 Oct 28, 2023
809150b
Merge remote-tracking branch 'origin/master'
andrei1058 Oct 28, 2023
5f22878
Merge branch 'master' into develop
andrei1058 Oct 28, 2023
fb58396
clean up
andrei1058 Oct 28, 2023
7e65949
clean up (#37)
andrei1058 Oct 28, 2023
2e9384b
Add 1.20 R2 support (#38)
andrei1058 Oct 28, 2023
8a90929
workflow update
andrei1058 Feb 10, 2025
d77c7e6
Merge branch 'updateworkflow' into develop
andrei1058 Feb 10, 2025
d9a1d2f
papi version update
andrei1058 Feb 10, 2025
87ee90a
skip docs
andrei1058 Feb 10, 2025
f068373
version update
andrei1058 Feb 10, 2025
f763525
expose
andrei1058 Feb 10, 2025
b7029a7
version string update
andrei1058 Feb 23, 2025
e1eca63
fix paper support (remapping issue I guess)
andrei1058 Feb 23, 2025
5c0dc9c
clean up
andrei1058 Feb 26, 2025
4e62614
fix tab prefix-suffix
andrei1058 Mar 2, 2025
9863a9c
enable distribution management back
andrei1058 Mar 2, 2025
0fcc5c8
Merge remote-tracking branch 'origin/master' into develop
andrei1058 Mar 2, 2025
ce0abfc
fix health not getting updated
andrei1058 Mar 2, 2025
548531a
add 1.21.3 support
andrei1058 Mar 2, 2025
40a5f9d
add 1.21.4 support
andrei1058 Mar 2, 2025
e0dbdb5
allow javadocs
andrei1058 Mar 23, 2025
f7b1df3
Merge remote-tracking branch 'origin/master' into develop
andrei1058 Mar 23, 2025
696c322
javadocs update
andrei1058 Mar 23, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: production
url: https://repo.andrei1058.dev
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
Expand All @@ -37,7 +37,7 @@ jobs:
curl -X PUT https://api.andrei1058.dev/v1/resources/4/versioning/commit -H "Accept: application/json" -H "Authorization: Bearer ${{ secrets.ANDEV_API_TOKEN }}" -H "Content-Type: application/json" --data '{"confirmation": true}' >> version.json
echo "UPDATE_VERSION=$UPDATE_VERSION" >> $GITHUB_ENV
- name: Create Tag
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
name: ${{env.UPDATE_VERSION}}
Expand Down
25 changes: 25 additions & 0 deletions sidebar-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,29 @@
</dependency>
</dependencies>


<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>20</source>
<target>20</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
11 changes: 11 additions & 0 deletions sidebar-cmn1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,15 @@
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>