Fix scopes on dependencies
diff --git a/bval-jsr/pom.xml b/bval-jsr/pom.xml
index 4bc0bde..185f90b 100644
--- a/bval-jsr/pom.xml
+++ b/bval-jsr/pom.xml
@@ -48,6 +48,7 @@
                     <groupId>org.apache.geronimo.specs</groupId>
                     <artifactId>geronimo-activation_1.1_spec</artifactId>
                     <version>1.1</version>
+                    <scope>provided</scope>
                 </dependency>
                 <dependency>
                     <groupId>javax.xml.bind</groupId>
@@ -272,22 +273,26 @@
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-validator</artifactId>
             <version>6.1.5.Final</version>
+            <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.openjdk.jmh</groupId>
             <artifactId>jmh-core</artifactId>
             <version>1.25.2</version>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.openjdk.jmh</groupId>
             <artifactId>jmh-generator-annprocess</artifactId>
             <version>1.25.2</version>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>com.github.biboudis</groupId>
             <artifactId>jmh-profilers</artifactId>
             <version>0.1.4</version>
+            <scope>test</scope>
         </dependency>
     </dependencies>
 
diff --git a/bval-jsr/src/test/java/org/apache/bval/jsr/Jsr303Benchmark.java b/bval-jsr/src/test/java/org/apache/bval/jsr/Jsr303Benchmark.java
index 0092be7..ec397bd 100644
--- a/bval-jsr/src/test/java/org/apache/bval/jsr/Jsr303Benchmark.java
+++ b/bval-jsr/src/test/java/org/apache/bval/jsr/Jsr303Benchmark.java
@@ -61,13 +61,13 @@
             .include(Jsr303Benchmark.class.getSimpleName())
 
             .forks(1)
-            .threads(5)
+            .threads(10)
 
             .measurementIterations(1)
-            .measurementTime(TimeValue.seconds(20))
+            .measurementTime(TimeValue.seconds(30))
 
             .warmupIterations(2)
-            .warmupTime(TimeValue.seconds(5))
+            .warmupTime(TimeValue.seconds(10))
 
             .addProfiler(JavaFlightRecorderProfiler.class)