Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: realese a new package for lombok #13

Merged
merged 5 commits into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
38 changes: 38 additions & 0 deletions packages/jdtls-1.33.0/package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: jdtls-1.33.0
description: Java language server.
homepage: https://github.com/eclipse/eclipse.jdt.ls
licenses:
- EPL-2.0
languages:
- Java
categories:
- LSP

source:
# renovate:datasource=github-tags
id: pkg:generic/eclipse/[email protected]
download:
- target: [darwin_x64, darwin_arm64]
files:
jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix "v" }}/jdt-language-server-{{ version | strip_prefix "v" }}-202402151717.tar.gz
config: config_mac/
- target: linux
files:
jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix "v" }}/jdt-language-server-{{ version | strip_prefix "v" }}-202402151717.tar.gz
config: config_linux/
- target: win
files:
jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix "v" }}/jdt-language-server-{{ version | strip_prefix "v" }}-202402151717.tar.gz
config: config_win/

schemas:
lsp: vscode:https://raw.githubusercontent.com/redhat-developer/vscode-java/master/package.json

bin:
jdtls: python:bin/jdtls

share:
jdtls/plugins/: plugins/
jdtls/plugins/org.eclipse.equinox.launcher.jar: plugins/org.eclipse.equinox.launcher_1.6.700.v20231214-2017.jar
jdtls/config/: "{{source.download.config}}"
26 changes: 26 additions & 0 deletions packages/lombok-nightly/package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: lombok-nightly
description: Project Lombok. Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java
homepage: https://projectlombok.org
licenses:
- MIT
languages:
- Java
categories:
- Runtime

source:
id: pkg:generic/lombok/lombok.jar@nightly
download:
- target: [darwin_x64, darwin_arm64]
files:
lombok.jar: https://projectlombok.org/lombok-edge.jar
- target: linux
files:
lombok.jar: https://projectlombok.org/lombok-edge.jar
- target: win
files:
lombok.jar: https://projectlombok.org/lombok-edge.jar

share:
lombok-nightly/lombok.jar: lombok.jar
26 changes: 26 additions & 0 deletions packages/lombok/package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: lombok
description: Project Lombok. Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java
homepage: https://projectlombok.org
licenses:
- MIT
languages:
- Java
categories:
- Runtime

source:
id: pkg:generic/lombok/[email protected]
download:
- target: [darwin_x64, darwin_arm64]
files:
lombok.jar: https://projectlombok.org/downloads/lombok-{{ version | strip_prefix "v" }}.jar
- target: linux
files:
lombok.jar: https://projectlombok.org/downloads/lombok-{{ version | strip_prefix "v" }}.jar
- target: win
files:
lombok.jar: https://projectlombok.org/downloads/lombok-{{ version | strip_prefix "v" }}.jar

share:
lombok/lombok.jar: lombok.jar
Loading