Skip to content

Commit

Permalink
Releasing version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kausandr committed Dec 22, 2021
1 parent 33c1681 commit df1dd13
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.0"
classpath "com.gocypher.cybench.launcher.plugin:cybench-launcher-gradle-plugin:1.0.1"
}
}
/* 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.0"
classpath "com.gocypher.cybench.launcher.plugin:cybench-launcher-gradle-plugin:1.0.1"
}
}
Expand All @@ -92,8 +92,8 @@ repositories {
dependencies {
testCompile 'junit:junit:4.13.2'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.0.0'
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.0.0'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'
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.0.0.jar -DgroupId=com.gocypher.cybench.client -DartifactId=gocypher-cybench-annotations -Dversion=1.0.0 -Dpackaging=jar
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
```
Include dependency to annotation processor in your project `build.gradle` file.
```build.gradle
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.0.0'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'
```
**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.0.0'
testAnnotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.0.0'
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'
testAnnotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'
```

## 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.1'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand All @@ -43,13 +43,13 @@ dependencies {
shadow gradleApi()

testCompile 'junit:junit:4.13.2'
compile 'com.fasterxml.jackson.core:jackson-databind:2.13.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
compile 'org.apache.httpcomponents:httpclient:4.5.13'
compile 'com.jcabi:jcabi-manifests:1.1'
compile 'com.github.oshi:oshi-core:5.8.5'
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.2.1'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.2.1'

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

0 comments on commit df1dd13

Please sign in to comment.