Skip to content

Commit

Permalink
Releasing version 0.3-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerspitz committed Apr 14, 2022
1 parent 73f1b80 commit f39c5b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ plugins {

group = 'com.gocypher.cybench.launcher.plugin'
archivesBaseName = 'gocypher-cybench-intellij'
version = '0.2-beta'
version = '0.3-beta'

sourceCompatibility = 1.8

Expand All @@ -38,7 +38,7 @@ repositories {

dependencies {
testCompile 'junit:junit:4.13.2'
compile 'com.gocypher.cybench.client:gocypher-cybench-runner:1.4-SNAPSHOT'
compile 'com.gocypher.cybench.client:gocypher-cybench-runner:1.3.5'
compile 'com.jayway.jsonpath:json-path:2.7.0'
compile 'org.json:json:20211205'
compile 'org.codehaus.jettison:jettison:1.4.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public void setupLibrary(Module module) {
ExternalLibraryDescriptor aProcessor = new ExternalLibraryDescriptor("org.openjdk.jmh",
"jmh-generator-annprocess", "1.33", "1.34");
ExternalLibraryDescriptor benchmarkTag = new ExternalLibraryDescriptor("com.gocypher.cybench.client",
"gocypher-cybench-annotations", "1.3.1", "1.3.3");
"gocypher-cybench-annotations", "1.3.4", "1.3.5");

JavaProjectModelModificationService.getInstance(module.getProject()).addDependency(module, core,
DependencyScope.COMPILE);
Expand Down Expand Up @@ -337,7 +337,7 @@ protected static void addGradleDependency(String projectPath) {
try {
File file = new File(projectPath + File.separator + "build.gradle");

String GRADLE_JMH_DEPENDENCY = " implementation 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.3'"
String GRADLE_JMH_DEPENDENCY = " implementation 'com.gocypher.cybench.client:gocypher-cybench-annotations:1.3.5'"
+ "\n";
String GRADLE_JMH_ANNOTATION_DEPENDENCY = " annotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.34'"
+ "\n";
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ repositories {

dependencies {
testCompile 'junit:junit:4.12'
compile "com.gocypher.cybench.client:gocypher-cybench-runner:1.3.3"
compile "com.gocypher.cybench.client:gocypher-cybench-runner:1.3.5"
}

0 comments on commit f39c5b9

Please sign in to comment.