Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-boot-admin
Commits
c943f168
Commit
c943f168
authored
Feb 27, 2015
by
Benedikt Ritter
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #50 from britter/coveralls
Fixes #45 - Configure build for coveralls.io
parents
9751b2f4
aff53aca
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
2 deletions
+48
-2
.travis.yml
.travis.yml
+3
-0
README.md
README.md
+1
-2
pom.xml
pom.xml
+44
-0
No files found.
.travis.yml
View file @
c943f168
...
...
@@ -5,3 +5,6 @@ before_install:
-
"
sh
-e
/etc/init.d/xvfb
start"
script
:
mvn clean install
after_success
:
-
mvn jacoco:report coveralls:report
README.md
View file @
c943f168
spring-boot-admin
=================
[
![Build Status
](
https://travis-ci.org/codecentric/spring-boot-admin.png?branch=master
)
](https://travis-ci.org/codecentric/spring-boot-admin)
[
![Coverage Status
](
https://coveralls.io/repos/codecentric/spring-boot-admin/badge.svg
)
](https://coveralls.io/r/codecentric/spring-boot-admin)
[
![Maven Central
](
https://maven-badges.herokuapp.com/maven-central/de.codecentric/spring-boot-admin/badge.svg
)
](https://maven-badges.herokuapp.com/maven-central/de.codecentric/spring-boot-admin/)
[
![Gitter
](
https://badges.gitter.im/Join
Chat.svg)](https://gitter.im/codecentric/spring-boot-admin?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
...
...
@@ -112,5 +113,3 @@ Example:
```
shell
mvn build-helper:parse-version versions:set versions:commit
-DnewVersion
=
1.0.0-SNAPSHOT
```
pom.xml
View file @
c943f168
...
...
@@ -140,6 +140,50 @@
</plugins>
</build>
</profile>
<profile>
<id>
travis
</id>
<activation>
<property>
<name>
env.TRAVIS
</name>
<value>
true
</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>
org.jacoco
</groupId>
<artifactId>
jacoco-maven-plugin
</artifactId>
<version>
0.7.3.201502191951
</version>
<executions>
<!-- Prepares the property pointing to the JaCoCo
runtime agent which is passed as VM argument when Maven the Surefire plugin
is executed. -->
<execution>
<id>
pre-unit-test
</id>
<goals>
<goal>
prepare-agent
</goal>
</goals>
</execution>
<!-- Ensures that the code coverage report for
unit tests is created after unit tests have been run. -->
<execution>
<id>
post-unit-test
</id>
<phase>
test
</phase>
<goals>
<goal>
report
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.eluder.coveralls
</groupId>
<artifactId>
coveralls-maven-plugin
</artifactId>
<version>
3.0.1
</version>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
...
...
Write
Preview
Markdown
is supported
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