Skip to content

Commit

Permalink
catch up with latest changes in 0.0.15-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
fmck3516 committed Feb 18, 2024
1 parent 1088ca9 commit 211eda9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
20 changes: 18 additions & 2 deletions getting-started-with-skippy-and-junit5/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
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.14'
}

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.14'
testImplementation 'io.skippy:skippy-junit5:0.0.15-SNAPSHOT'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.9.2'
}

test {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 4 additions & 4 deletions getting-started-with-skippy-and-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<dependency>
<groupId>io.skippy</groupId>
<artifactId>skippy-junit5</artifactId>
<version>0.0.14</version>
<version>0.0.15-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -30,12 +30,12 @@
<plugin>
<groupId>io.skippy</groupId>
<artifactId>skippy-maven</artifactId>
<version>0.0.14</version>
<version>0.0.15-SNAPSHOT</version>
<executions>
<execution>
<goals>
<goal>analyze</goal>
<goal>clean</goal>
<goal>buildFinished</goal>
<goal>buildStarted</goal>
</goals>
</execution>
</executions>
Expand Down

0 comments on commit 211eda9

Please sign in to comment.