Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ jobs:
- uses: actions/checkout@v4
- name: Prepare CI Environment
uses: ./.github/actions/prepare_env

- name: Gradle :SwiftKitCore:build
run: ./gradlew :SwiftKitCore:build -x test
- name: Gradle :SwiftKitCore:check
run: ./gradlew :SwiftKitCore:check --info

- name: Gradle :SwiftKitFFM:build
run: ./gradlew :SwiftKitFFM:build -x test
- name: Gradle :SwiftKitFFM:check
Expand Down
16 changes: 13 additions & 3 deletions SwiftKitCore/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

plugins {
id("build-logic.java-application-conventions")
id("me.champeau.jmh") version "0.7.2"
}

group = "org.swift.swiftkit"
Expand All @@ -28,12 +29,21 @@ java {
languageVersion.set(JavaLanguageVersion.of(17))
}
// Support Android 6+ (Java 7)
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

dependencies {
testImplementation 'junit:junit:4.13.2'
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}

testing {
suites {
test {
useJUnitJupiter('5.10.3')
}
}
}

tasks.test {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package org.swift.swiftkit.core;

public class NotImplementedException extends RuntimeException {

private static final long serialVersionUID = 1L;

public NotImplementedException(String message) {
super(message);
}
}
Loading
Loading