Skip to content

Commit 943ad99

Browse files
committed
Add placeholder for previewer work.
1 parent 196bd13 commit 943ad99

File tree

7 files changed

+41
-5
lines changed

7 files changed

+41
-5
lines changed

.idea/compiler.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
subprojects {
1616
group = 'org.httprpc'
17-
version = '3.4.9'
17+
version = '3.5'
1818

1919
repositories {
2020
mavenCentral()

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
kiloVersion = 5.2.4
22
flatLafVersion = 3.6.2
3-
radianceVersion = 8.0.0
43

54
projectDescription = Declarative UI for Java
65
projectURL = https://github.com/HTTP-RPC/Sierra

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
rootProject.name = 'Sierra'
22

3-
include 'sierra', 'sierra-test'
3+
include 'sierra', 'sierra-previewer', 'sierra-test'

sierra-previewer/build.gradle

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
plugins {
16+
id 'application'
17+
}
18+
19+
dependencies {
20+
implementation project(':sierra')
21+
22+
implementation "com.formdev:flatlaf:${flatLafVersion}"
23+
implementation "com.formdev:flatlaf-extras:${flatLafVersion}"
24+
25+
implementation 'com.fifesoft:rsyntaxtextarea:3.6.0'
26+
implementation 'com.fifesoft:autocomplete:3.3.2'
27+
}
28+
29+
tasks.withType(JavaCompile) {
30+
options.compilerArgs = [
31+
'-parameters'
32+
]
33+
}

sierra-test/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ plugins {
1919
dependencies {
2020
implementation project(':sierra')
2121

22-
implementation "com.formdev:flatlaf:${flatLafVersion}:no-natives"
22+
implementation "com.formdev:flatlaf:${flatLafVersion}"
2323
implementation "com.formdev:flatlaf-extras:${flatLafVersion}"
2424

25-
implementation "org.pushing-pixels:radiance-theming:${radianceVersion}"
25+
implementation 'org.pushing-pixels:radiance-theming:8.0.0'
2626
}
2727

2828
tasks.withType(JavaCompile) {

0 commit comments

Comments
 (0)