trying to get 4.8-1 to fix release (all say 4.8-1-SNAPSHOT now)

This commit is contained in:
parrt 2020-01-18 10:34:27 -08:00
parent f9cb658daa
commit 54cb3f2018
3 changed files with 6 additions and 3 deletions

View File

@ -28,7 +28,6 @@ Make sure you tell git to pull in the submodule (for every clone you do of antlr
```bash
git submodule init
git submodule update
```
Update the runtime submodules by running the following command:
@ -74,6 +73,10 @@ find tool runtime -type f -exec grep -l '4\.6' {} \;
Commit to repository.
## Building
ugh. apparently you have to `mvn install` and then `mvn compile` or some such or subdir pom.xml's won't see the latest runtime build.
## Maven Repository Settings
First, make sure you have maven set up to communicate with staging servers etc... Create file `~/.m2/settings.xml` with appropriate username/password for staging server and gpg.keyname/passphrase for signing. Make sure it has strict visibility privileges to just you. On unix, it looks like:

View File

@ -10,7 +10,7 @@
<parent>
<groupId>org.antlr</groupId>
<artifactId>antlr4-master</artifactId>
<version>4.8-SNAPSHOT</version>
<version>4.8-1-SNAPSHOT</version>
</parent>
<artifactId>antlr4-runtime-testsuite</artifactId>
<name>ANTLR 4 Runtime Tests (2nd generation)</name>

View File

@ -10,7 +10,7 @@
<parent>
<groupId>org.antlr</groupId>
<artifactId>antlr4-master</artifactId>
<version>4.8-SNAPSHOT</version>
<version>4.8-1-SNAPSHOT</version>
</parent>
<artifactId>antlr4-tool-testsuite</artifactId>
<name>ANTLR 4 Tool Tests</name>