Skip to content

Commit 2a091d6

Browse files
committed
Adding Maven/Gradle notes.
1 parent b5a9e77 commit 2a091d6

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

api/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
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).
44

5+
## Maven / Gradle
6+
7+
To include in a Maven project:
8+
9+
```xml
10+
<dependency>
11+
<groupId>net.sf.applecommander</groupId>
12+
<artifactId>bastokenizer-api</artifactId>
13+
<version>0.2.0</version>
14+
</dependency>
15+
```
16+
17+
To include in a Gradle project:
18+
19+
```
20+
dependencies {
21+
// ...
22+
compile "net.sf.applecommander:bastokenizer-api:0.2.0"
23+
// ...
24+
}
25+
```
26+
527
## Overview
628

729
Generally, the usage pattern is:

0 commit comments

Comments
 (0)