-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from OP-TED/feature/EPO-730
Feature/epo 730
- Loading branch information
Showing
53 changed files
with
49,404 additions
and
1,133,279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: [ feature/* , main, hotfix/*, release/* ] | ||
# pull_request: | ||
# branches: [ main, release/* ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Build and Run Tests | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||
- name: Build and Run Tests | ||
run: mvn install | ||
- name: current dir | ||
run: pwd | ||
- name: current dir | ||
run: ls -la ./target/surefire-reports | ||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@v3 | ||
if: success() || failure() # always run even if the previous step fails | ||
with: | ||
report_paths: '**/target/surefire-reports/test-*.xml' | ||
detailed_summary: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -319,6 +319,7 @@ xspec | |
transform/*.jar | ||
transform/doc | ||
output | ||
target | ||
bin/ | ||
lib64 | ||
pyvenv.cfg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 | ||
http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>ws.meaningfy.model2owl</groupId> | ||
<artifactId>model2owl</artifactId> | ||
<version>1</version> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.nkutsche</groupId> | ||
<artifactId>xspec-maven-plugin</artifactId> | ||
<version>2.0.0</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>run-xspec</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<testDir>${project.basedir}/test/unitTests</testDir> | ||
<generateSurefireReport>true</generateSurefireReport> | ||
<xspecProperties> | ||
<xspec.fail>false</xspec.fail> | ||
</xspecProperties> | ||
</configuration> | ||
<!-- <dependencies>--> | ||
<!-- <dependency>--> | ||
<!-- <groupId>io.xspec</groupId>--> | ||
<!-- <artifactId>xspec</artifactId>--> | ||
<!-- <version>2.2.4</version>--> | ||
<!-- <classifier>enduser-files</classifier>--> | ||
<!-- <type>zip</type>--> | ||
<!-- </dependency>--> | ||
<!-- <dependency>--> | ||
<!-- <groupId>name.dmaus.schxslt</groupId>--> | ||
<!-- <artifactId>schxslt</artifactId>--> | ||
<!-- <version>1.8.6</version>--> | ||
<!-- </dependency>--> | ||
<!-- </dependencies>--> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.