Skip to content

Commit

Permalink
Set the version to 2.0.6 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Oct 2, 2020
1 parent 92e8e49 commit afa22a7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Jakarta Bean Validation TCK
*Version: 2.0.5 - 05-08-2019*
*Version: 2.0.6 - 05-08-2019*

This repository contains the Jakarta Bean Validation 2.0
[TCK](http://en.wikipedia.org/wiki/Technology_Compatibility_Kit).
Expand Down
2 changes: 1 addition & 1 deletion setup-examples/ant/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ version.arquillian=1.1.11.Final
version.arquillian-glassfish=1.0.0.Final
version.testng=6.9.9
version.hv=6.0.17.Final
version.tck=2.0.5
version.tck=2.0.6
2 changes: 1 addition & 1 deletion setup-examples/ant/ivy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="Red Hat, Inc."
module="beanvalidation-tck-tests"
revision="2.0.5"
revision="2.0.6"
status="Final"
publication="20190814202711"
>
Expand Down
12 changes: 7 additions & 5 deletions setup-examples/artifact-install.sh
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
#!/usr/bin/env bash

VERSION="2.0.6"

# Location where the Bean Validation TCK dist has been extracted
TCK_DIST=/tmp/BV/beanvalidation-tck-dist-2.0.5
TCK_DIST=/tmp/BV/beanvalidation-tck-dist-${VERSION}

# Parent pom
mvn org.apache.maven.plugins:maven-install-plugin:3.0.0-M1:install-file \
-Dfile=${TCK_DIST}/src/pom.xml -DgroupId=org.hibernate.beanvalidation.tck \
-DartifactId=beanvalidation-tck-parent -Dversion=2.0.5 -Dpackaging=pom
-DartifactId=beanvalidation-tck-parent -Dversion=${VERSION} -Dpackaging=pom

# Install the tests jar
mvn org.apache.maven.plugins:maven-install-plugin:3.0.0-M1:install-file \
-Dfile=${TCK_DIST}/artifacts/beanvalidation-tck-tests-2.0.5.jar -DgroupId=org.hibernate.beanvalidation.tck \
-DartifactId=beanvalidation-tck-tests -Dversion=2.0.5 -Dpackaging=jar
-Dfile=${TCK_DIST}/artifacts/beanvalidation-tck-tests-${VERSION}.jar -DgroupId=org.hibernate.beanvalidation.tck \
-DartifactId=beanvalidation-tck-tests -Dversion=${VERSION} -Dpackaging=jar

# Install the test-suite.xml
mvn org.apache.maven.plugins:maven-install-plugin:3.0.0-M1:install-file \
-Dfile=${TCK_DIST}/artifacts/tck-tests.xml -DgroupId=org.hibernate.beanvalidation.tck \
-DartifactId=beanvalidation-tck-tests -Dversion=2.0.5 -Dpackaging=xml -Dclassifier=suite
-DartifactId=beanvalidation-tck-tests -Dversion=${VERSION} -Dpackaging=xml -Dclassifier=suite

4 changes: 2 additions & 2 deletions setup-examples/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@

<groupId>org.hibernate.beanvalidation.tck</groupId>
<artifactId>tck-runner</artifactId>
<version>2.0.5</version>
<version>2.0.6</version>

<name>Example Jakarta Bean Validation TCK Runner</name>
<description>Aggregates dependencies and runs the Jakarta Bean Validation TCK</description>

<properties>
<tck.version>2.0.5</tck.version>
<tck.version>2.0.6</tck.version>
<tck.suite.file>${project.build.directory}/dependency/beanvalidation-tck-tests-suite.xml</tck.suite.file>
<arquillian.version>1.1.11.Final</arquillian.version>

Expand Down

0 comments on commit afa22a7

Please sign in to comment.