Skip to content

Commit

Permalink
Releasing version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kausandr committed Feb 4, 2022
1 parent 7d9dd2d commit 0156ea7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions README.md
Expand Up @@ -32,7 +32,7 @@ buildscript {
}
}
dependencies {
classpath "com.gocypher.cybench.launcher.plugin:cybench-launcher-gradle-plugin:1.0.2"
classpath "com.gocypher.cybench.launcher.plugin:cybench-launcher-gradle-plugin:1.0.3"
}
}
/* below the dependencies tag inside the build.gradle */
Expand Down Expand Up @@ -86,7 +86,7 @@ buildscript {
}
}
dependencies {
classpath "com.gocypher.cybench.launcher.plugin:cybench-launcher-gradle-plugin:1.0.2"
classpath "com.gocypher.cybench.launcher.plugin:cybench-launcher-gradle-plugin:1.0.3"
}
}
Expand All @@ -103,8 +103,8 @@ repositories {
dependencies {
testCompile 'junit:junit:4.13.2'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.1'
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.1'
compile 'org.openjdk.jmh:jmh-core:1.34'
annotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.34'
Expand Down Expand Up @@ -138,21 +138,21 @@ cybenchJMH{
Install annotation binaries into your local Maven repository

```sh
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
mvn install:install-file -Dfile=gocypher-cybench-annotations-1.3.1.jar -DgroupId=com.gocypher.cybench.client -DartifactId=gocypher-cybench-annotations -Dversion=1.3.1 -Dpackaging=jar
```

Include dependency to annotation processor in your project `build.gradle` file.

```groovy
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.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.

```groovy
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'
testAnnotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.0'
annotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.1'
testAnnotationProcessor 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.1'
```

## More information on benchmarking your code
Expand Down
6 changes: 3 additions & 3 deletions cybench-launcher-gradle-plugin/build.gradle
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.3'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand All @@ -48,8 +48,8 @@ dependencies {
compile 'com.jcabi:jcabi-manifests:1.1'
compile 'com.github.oshi:oshi-core:6.1.0'
compile 'org.jhardware:jHardware:0.8.6'
compile 'com.gocypher.cybench.client:gocypher-cybench-runner:1.4-SNAPSHOT'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.4-SNAPSHOT'
compile 'com.gocypher.cybench.client:gocypher-cybench-runner:1.3.1'
compile 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.1'

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

0 comments on commit 0156ea7

Please sign in to comment.