Skip to content

Commit

Permalink
catch up with latest in 0.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
fmck3516 committed Mar 6, 2024
1 parent 211eda9 commit 042b675
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 22 deletions.
4 changes: 2 additions & 2 deletions getting-started-with-skippy-and-junit5/build-snapshot.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
maven { url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
classpath 'io.skippy:skippy-gradle:0.0.15-SNAPSHOT'
classpath 'io.skippy:skippy-gradle:0.0.18-SNAPSHOT'
}
}

Expand All @@ -20,7 +20,7 @@ repositories {
}

dependencies {
testImplementation 'io.skippy:skippy-junit5:0.0.15-SNAPSHOT'
testImplementation 'io.skippy:skippy-junit5:0.0.18-SNAPSHOT'
}

test {
Expand Down
18 changes: 2 additions & 16 deletions getting-started-with-skippy-and-junit5/build.gradle
Original file line number Diff line number Diff line change
@@ -1,28 +1,14 @@
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
classpath 'io.skippy:skippy-gradle:0.0.15-SNAPSHOT'
}
}

plugins {
id 'java'
id 'io.skippy' version '0.0.17'
}

apply plugin: io.skippy.gradle.SkippyPlugin

repositories {
mavenLocal()
mavenCentral()
maven { url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
}

dependencies {
testImplementation 'io.skippy:skippy-junit5:0.0.15-SNAPSHOT'
testImplementation 'io.skippy:skippy-junit5:0.0.17'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.9.2'
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.example;

import io.skippy.junit5.Skippified;
import io.skippy.junit5.PredictWithSkippy;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;

@Skippified
@PredictWithSkippy
public class LeftPadderTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.example;

import io.skippy.junit5.Skippified;
import io.skippy.junit5.PredictWithSkippy;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;

@Skippified
@PredictWithSkippy
public class RightPadderTest {

@Test
Expand Down

0 comments on commit 042b675

Please sign in to comment.