Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
monticore
EmbeddedMontiArc
generators
EMAM2RosMsg
Commits
44b526a4
Commit
44b526a4
authored
Jul 09, 2018
by
Alexander David Hellwig
Browse files
Added Test coverage + badges
parent
f8a155e0
Pipeline
#61577
passed with stages
in 1 minute and 7 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
44b526a4
...
@@ -7,6 +7,7 @@ masterJobLinux:
...
@@ -7,6 +7,7 @@ masterJobLinux:
image
:
maven:3-jdk-8
image
:
maven:3-jdk-8
script
:
script
:
-
mvn -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B clean deploy --settings settings.xml
-
mvn -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B clean deploy --settings settings.xml
-
cat target/site/jacoco/index.html
only
:
only
:
-
master
-
master
...
@@ -22,5 +23,6 @@ BranchJobLinux:
...
@@ -22,5 +23,6 @@ BranchJobLinux:
image
:
maven:3-jdk-8
image
:
maven:3-jdk-8
script
:
script
:
-
mvn -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B clean install --settings settings.xml
-
mvn -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B clean install --settings settings.xml
-
cat target/site/jacoco/index.html
except
:
except
:
-
master
-
master
README.md
View file @
44b526a4
# EMAM2RosMsg
# EMAM2RosMsg


TODO
Converts EMAM data types to ROS Messages
\ No newline at end of file
pom.xml
View file @
44b526a4
...
@@ -38,6 +38,7 @@
...
@@ -38,6 +38,7 @@
<compiler.plugin>
3.3
</compiler.plugin>
<compiler.plugin>
3.3
</compiler.plugin>
<source.plugin>
2.4
</source.plugin>
<source.plugin>
2.4
</source.plugin>
<shade.plugin>
2.4.3
</shade.plugin>
<shade.plugin>
2.4.3
</shade.plugin>
<jacoco.plugin>
0.8.1
</jacoco.plugin>
<!-- Classifiers -->
<!-- Classifiers -->
<grammars.classifier>
grammars
</grammars.classifier>
<grammars.classifier>
grammars
</grammars.classifier>
...
@@ -278,6 +279,28 @@
...
@@ -278,6 +279,28 @@
<target>
${java.version}
</target>
<target>
${java.version}
</target>
</configuration>
</configuration>
</plugin>
</plugin>
<!-- Test coverage -->
<plugin>
<groupId>
org.jacoco
</groupId>
<artifactId>
jacoco-maven-plugin
</artifactId>
<version>
${jacoco.plugin}
</version>
<executions>
<execution>
<id>
pre-unit-test
</id>
<goals>
<goal>
prepare-agent
</goal>
</goals>
</execution>
<execution>
<id>
post-unit-test
</id>
<phase>
test
</phase>
<goals>
<goal>
report
</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Source Jar Configuration -->
<!-- Source Jar Configuration -->
<plugin>
<plugin>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment