-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbleep.yaml
More file actions
144 lines (144 loc) · 3.65 KB
/
Copy pathbleep.yaml
File metadata and controls
144 lines (144 loc) · 3.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
$schema: https://raw.githubusercontent.com/oyvindberg/bleep/master/schema.json
$version: 1.0.0-M9
jvm:
name: graalvm-community:25.0.1
projects:
crossterm:
extends: template-jatatui-publish
java:
options: --release 17
platform:
name: jvm
publish:
description: JNI binding to the Rust crossterm crate, with prebuilt native libraries.
sourcegen:
main: tui.scripts.GenJniLibrary
project: scripts
jatatui-core:
extends: template-jatatui-publish
java:
options: --release 21
platform:
name: jvm
publish:
description: jatatui core (Buffer, Layout, Style, Text, Terminal). Java port of ratatui-core.
jatatui-widgets:
dependsOn: jatatui-core
extends: template-jatatui-publish
java:
options: --release 21
platform:
name: jvm
publish:
description: jatatui widgets (Block, Paragraph, List, Table, Chart, ...). Java port of ratatui-widgets.
jatatui-crossterm:
dependsOn:
- jatatui-core
- crossterm
extends: template-jatatui-publish
java:
options: --release 21
platform:
name: jvm
publish:
description: jatatui CrosstermBackend. Java port of ratatui-crossterm.
jatatui-react:
dependsOn:
- jatatui-core
- jatatui-widgets
- jatatui-crossterm
extends: template-jatatui-publish
java:
options: --release 21
platform:
name: jvm
publish:
description: React-style component layer for jatatui — components, hooks, event bubbling, portals.
jatatui-components:
dependsOn:
- jatatui-core
- jatatui-widgets
- jatatui-react
extends: template-jatatui-publish
java:
options: --release 21
platform:
name: jvm
publish:
description: Higher-level jatatui-react components — TextInput, Modal, Dropdown, Toast, Form, Router, Theme.
jatatui-tests:
dependencies:
- org.junit.jupiter:junit-jupiter:5.11.3
- org.junit.jupiter:junit-jupiter-engine:5.11.3
- com.github.sbt.junit:jupiter-interface:0.13.3
dependsOn:
- jatatui-core
- jatatui-widgets
- jatatui-crossterm
- jatatui-react
- jatatui-components
isTestProject: true
java:
options: --release 21
platform:
name: jvm
jatatui-demo:
dependsOn:
- jatatui-core
- jatatui-widgets
- jatatui-crossterm
java:
options: --release 21
platform:
name: jvm
mainClass: jatatui.examples.Launcher
jatatui-demo-react:
dependsOn:
- jatatui-core
- jatatui-widgets
- jatatui-crossterm
- jatatui-react
- jatatui-components
java:
options: --release 21
platform:
name: jvm
mainClass: jatatui.react.examples.Launcher
scripts:
dependencies:
- build.bleep::bleep-plugin-jni:1.0.0-M9
- build.bleep::bleep-plugin-native-image:1.0.0-M3
extends:
- template-scala-2
- template-scala-common
scripts:
gen-headers:
main: tui.scripts.GenHeaders
project: scripts
gen-native-image:
main: tui.scripts.GenNativeImage
project: scripts
templates:
template-jatatui-publish:
publish:
groupId: com.olvind.jatatui
url: https://github.com/oyvindberg/jatatui/
developers:
- id: oyvindberg
name: Øyvind Raddum Berg
url: https://github.com/oyvindberg
licenses:
- name: MIT
url: http://opensource.org/licenses/MIT
distribution: repo
sonatypeProfileName: com.olvind
sonatypeCredentialHost: central.sonatype.com
template-scala-2:
scala:
version: 3.8.3
template-scala-common:
platform:
name: jvm
scala:
options: -encoding utf8 -feature -unchecked
strict: true