Skip to content

Commit

Permalink
Update README with latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Jan 21, 2025
1 parent 2f59d44 commit 7d57635
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ To give this project a quick try on your own machine, just run some of the examp

Download `blaze.jar` to your project directory. If you have `wget` available

wget -O blaze.jar 'https://repo1.maven.org/maven2/com/fizzed/blaze-lite/1.8.0/blaze-lite-1.8.0.jar'
wget -O blaze.jar 'https://repo1.maven.org/maven2/com/fizzed/blaze-lite/1.9.0/blaze-lite-1.9.0.jar'

If you have `curl` available

curl -o blaze.jar 'https://repo1.maven.org/maven2/com/fizzed/blaze-lite/1.8.0/blaze-lite-1.8.0.jar'
curl -o blaze.jar 'https://repo1.maven.org/maven2/com/fizzed/blaze-lite/1.9.0/blaze-lite-1.9.0.jar'

Or simply [download the file in your web browser](https://repo1.maven.org/maven2/com/fizzed/blaze-lite/1.8.0/blaze-lite-1.8.0.jar)
Or simply [download the file in your web browser](https://repo1.maven.org/maven2/com/fizzed/blaze-lite/1.9.0/blaze-lite-1.9.0.jar)
and save it to your project directory with a name of `blaze.jar`

## Write hello world blaze script in .java
Expand Down Expand Up @@ -349,7 +349,7 @@ the following in your shell

Writing your blaze scripts in an IDE is significantly more productive than trying to write them in a text editor. We
initially tried writing our own IDE plugins to automatically recognize blaze was present, but that proved too difficult
to maintain over IDE versions. As of Blaze v1.8.0+, there is a new simple method to enable IDE support across any
to maintain over IDE versions. As of Blaze v1.9.0+, there is a new simple method to enable IDE support across any
IDE that supports Maven projects.

java -jar blaze.jar --generate-maven-project
Expand Down Expand Up @@ -411,8 +411,8 @@ like so
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-core</artifactId>
<version>1.8.0</version>
<version>1.9.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
```
```

0 comments on commit 7d57635

Please sign in to comment.