mirror of
https://github.com/AppleCommander/bastools.git
synced 2024-12-22 14:29:22 +00:00
Adding Maven/Gradle notes.
This commit is contained in:
parent
b5a9e7708f
commit
2a091d690d
@ -2,6 +2,28 @@
|
||||
|
||||
The BASIC Tokenizer API is a set of reusable code that can be used to parse a text-based AppleSoft BASIC program an generate the appropriate tokens. It also has multiple types of visitors that can re-write that parse tree to rearrange the code (calling them optimizations is a bit over-the-top).
|
||||
|
||||
## Maven / Gradle
|
||||
|
||||
To include in a Maven project:
|
||||
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>net.sf.applecommander</groupId>
|
||||
<artifactId>bastokenizer-api</artifactId>
|
||||
<version>0.2.0</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
To include in a Gradle project:
|
||||
|
||||
```
|
||||
dependencies {
|
||||
// ...
|
||||
compile "net.sf.applecommander:bastokenizer-api:0.2.0"
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
## Overview
|
||||
|
||||
Generally, the usage pattern is:
|
||||
|
Loading…
Reference in New Issue
Block a user