@@ -25,7 +25,7 @@ see TODO.txt for a tentative roadmap. Releases will be announced on the [STIX
2525discussion list] [ list ] . A java-stix for a particular schema release will match the
2626STIX schema version in Semantic Versioning form. Follow up patches of java-stix
2727for a particular schema release will increment a 4th digit. For example, the first
28- patch release for java-stix ` v1.2.0 ` would be ` v1.2.0.1 ` . Patches will be worked
28+ patch release for java-stix ` v1.2.0 ` would be ` v1.2.0.2 ` . Patches will be worked
2929in a branch prior to being tagged and released.
3030
3131## <a name =" releases " ></a >Releases
@@ -37,16 +37,16 @@ Releases are distributed via the Maven Central Repository.
3737 <dependency>
3838 <groupId>org.mitre</groupId>
3939 <artifactId>stix</artifactId>
40- <version>1.2.0.1 </version>
40+ <version>1.2.0.2 </version>
4141 </dependency>
4242
4343### <a name =" gradle_dependency_info " ></a >Gradle:
4444
45- compile 'org.mitre:stix:1.2.0.1 '
45+ compile 'org.mitre:stix:1.2.0.2 '
4646
4747### <a name =" ivy__dependency_info " ></a >Apache Ivy:
4848
49- <dependency org="org.mitre" name="stix" rev="1.2.0.1 " />
49+ <dependency org="org.mitre" name="stix" rev="1.2.0.2 " />
5050
5151## <a name =" snapshots " ></a >Snapshots
5252
@@ -69,7 +69,7 @@ Users using Apache Maven for example can simply retrieve java-stix directly via
6969 <dependency>
7070 <groupId>org.mitre</groupId>
7171 <artifactId>stix</artifactId>
72- <version>1.2.0.1 -SNAPSHOT</version>
72+ <version>1.2.0.2 -SNAPSHOT</version>
7373 </dependency>
7474 </dependencies>
7575
@@ -356,17 +356,17 @@ Then create a container using the image you just created via:
356356To retreive the jar archives from the running docker container use following
357357from the command-line of your docker host, not the container:
358358
359- docker cp <container id>:/java-stix/build/libs/stix-1.2.0.1 -SNAPSHOT-javadoc.jar .
360- docker cp <container id>:/java-stix/build/libs/stix-1.2.0.1 -SNAPSHOT-sources.jar .
361- docker cp <container id>:/java-stix/build/libs/stix-1.2.0.1 -SNAPSHOT.jar .
359+ docker cp <container id>:/java-stix/build/libs/stix-1.2.0.2 -SNAPSHOT-javadoc.jar .
360+ docker cp <container id>:/java-stix/build/libs/stix-1.2.0.2 -SNAPSHOT-sources.jar .
361+ docker cp <container id>:/java-stix/build/libs/stix-1.2.0.2 -SNAPSHOT.jar .
362362
363363If the containder ID is not obvious, but you can also retrieve it via:
364364
365365 docker ps
366366
367367An example of retrieving the snapshot jar would be the following:
368368
369- docker cp 83ad9afb6096:/java-stix/build/libs/stix-1.2.0.1 -SNAPSHOT.jar .
369+ docker cp 83ad9afb6096:/java-stix/build/libs/stix-1.2.0.2 -SNAPSHOT.jar .
370370
371371By default the Docker container will build using OpenJdk 7. You can modify
372372the Dockerfile to other JVM's noted in the file. Please, note Gradle targets
0 commit comments