Features/406 pipeline by rneeft · Pull Request #2 · TESTARtool/ChangeDetectionJava · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
32 changes: 32 additions & 0 deletions .github/workflows/pipeline.yml
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# TESTAR Model Difference
[![Java CI with Gradle](https://github.com/TESTARtool/Model-Difference/actions/workflows/pipeline.yml/badge.svg)](https://github.com/TESTARtool/Model-Difference/actions/workflows/pipeline.yml)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)

TESTAR tool repository that contains the State Model Difference feature
11 changes: 10 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'nl.ou.testar'
version '0.1.0-init'
version '1.0.0'

repositories {
mavenCentral()
Expand All @@ -26,6 +26,15 @@ test {
useJUnitPlatform()
}

jar {
manifest {
attributes 'Main-Class': 'Program'
}
from {
configurations.runtimeClasspath.collect {it.isDirectory() ? it: zipTree(it)}
}
}

sonarqube {
properties {
property "sonar.projectKey", "model-difference"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/Main.java → src/main/java/Program.java