...
For read-only access, you can do this
Notecode |
---|
git clone https://git.opendaylight.org/gerrit/plastic |
For a committer, you can do this
...
Once you have the prerequisites and have cloned the repo, you can issue a build at the
top level of your local copy of the repo<pre>
Code Block |
---|
cd plastic |
...
mvn clean install |
...
The build should complete normally. You can look in the target directory for artifacts.
There should be a plastic-*.jar and a directory called runner. If you change your current
working directory to the runner directory, you can issue the following command to see
things work (this uses examples from the tutorial)<pre>
Code Block |
---|
./plastic_runner runnerroot.properties |
...
You should see log output that shows a successful translation from "abcd" to "ABCD".
...