Skip to content

Commit

Permalink
Releasing version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kausandr committed Jan 12, 2022
1 parent 2ef1709 commit 69f360f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ buildscript {
}
}
dependencies {
classpath "com.gocypher.cybench.launcher.plugin:cybench-launcher-gradle-plugin:1.0.1"
classpath "com.gocypher.cybench.launcher.plugin:cybench-launcher-gradle-plugin:1.0.2"
}
}
/* below the dependencies tag inside the build.gradle */
Expand Down Expand Up @@ -75,7 +75,7 @@ buildscript {
}
}
dependencies {
classpath "com.gocypher.cybench.launcher.plugin:cybench-launcher-gradle-plugin:1.0.1"
classpath "com.gocypher.cybench.launcher.plugin:cybench-launcher-gradle-plugin:1.0.2"
}
}
Expand All @@ -92,8 +92,8 @@ repositories {
dependencies {
testCompile 'junit:junit:4.13.2'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'
compile 'org.openjdk.jmh:jmh-core:1.32'
annotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.32'
Expand Down Expand Up @@ -125,16 +125,16 @@ cybenchJMH{
#### Optional: gocypher-cybench-annotation For adding custom benchmark annotations @BenchmarkTag
Install annotation binaries into your local Maven repository
```sh
mvn install:install-file -Dfile=gocypher-cybench-annotations-1.2.1.jar -DgroupId=com.gocypher.cybench.client -DartifactId=gocypher-cybench-annotations -Dversion=1.2.1 -Dpackaging=jar
mvn install:install-file -Dfile=gocypher-cybench-annotations-1.3.0.jar -DgroupId=com.gocypher.cybench.client -DartifactId=gocypher-cybench-annotations -Dversion=1.3.0 -Dpackaging=jar
```
Include dependency to annotation processor in your project `build.gradle` file.
```build.gradle
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'
```
**Notice:** if you want for the tags to be auto generated on your projects you should add annotationProcessor or testAnnotationProcessor. First launch will generate the annotations for benchmarks and fail build.
```build.gradle
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'
testAnnotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'
testAnnotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'
```

## More information on benchmarking your code
Expand Down
10 changes: 5 additions & 5 deletions cybench-launcher-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repositories {

group = 'com.gocypher.cybench.launcher.plugin'
archivesBaseName = 'cybench-launcher-gradle-plugin'
version = '1.1-SNAPSHOT'
version = '1.0.2'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand All @@ -48,11 +48,11 @@ dependencies {
compile 'com.jcabi:jcabi-manifests:1.1'
compile 'com.github.oshi:oshi-core:5.8.6'
compile 'org.jhardware:jHardware:0.8.6'
compile 'com.gocypher.cybench.client:gocypher-cybench-runner:1.3-SNAPSHOT'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3-SNAPSHOT'
compile 'com.gocypher.cybench.client:gocypher-cybench-runner:1.3.0'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'

implementation 'org.openjdk.jmh:jmh-core:1.33'
annotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.33'
implementation 'org.openjdk.jmh:jmh-core:1.34'
annotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.34'

compile 'org.reflections:reflections:0.10.2'
compile 'org.twdata.maven:mojo-executor:2.3.2'
Expand Down

0 comments on commit 69f360f

Please sign in to comment.