Skip to content
This repository was archived by the owner on Jan 19, 2024. It is now read-only.

Commit cf32ebe

Browse files
committed
Update JDK, Gradle, Node.js version
1 parent 92be207 commit cf32ebe

File tree

8 files changed

+30
-75
lines changed

8 files changed

+30
-75
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
**/node_modules/
21
*.jar
32
*.log
43
*.swp
54
.antlr/
6-
tmp/
5+
node_modules/

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
dist: bionic
1+
dist: jammy
22
language: java
33
jdk:
44
- openjdk11
55
node_js:
66
- "16"
77
script:
8+
- gradle --version
89
- npm install
910
- npm run lint
1011
- npm run build

CHANGELOG.md

Lines changed: 0 additions & 46 deletions
This file was deleted.

Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM azul/zulu-openjdk:11.0.17 as jdk
2+
FROM gradle:7.6.0-jdk11-jammy as gradle
3+
FROM node:16.18.1-buster-slim
4+
5+
COPY --from=jdk /usr/lib/jvm/zulu11-ca-amd64 /opt/openjdk
6+
COPY --from=gradle /opt/gradle /opt/gradle
7+
RUN npm install -g tyrian@latest && npm cache clean --force
8+
ENV PATH=$PATH:/opt/gradle/bin:/opt/openjdk/bin

LICENSE

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
MIT License
22

3-
Copyright (c) 2017-2021 wizawu
3+
Copyright (c) 2017-2023 wizawu
44

5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
1111

1212
The above copyright notice and this permission notice shall be included in all
1313
copies or substantial portions of the Software.
1414

1515
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,10 @@ We've built several projects with tyrian, such as websites and trading system. T
88
* Check out the [examples](/examples).
99

1010
<img src="/docs/assets/images/autocomplete.gif" width="640" />
11+
12+
### Docker
13+
14+
```
15+
docker pull wizawu/tyrian:latest
16+
docker run --rm wizawu/tyrian:latest tyrian --help
17+
```

docker/Dockerfile

Lines changed: 0 additions & 7 deletions
This file was deleted.

docker/README.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)