File tree Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ services:
5
5
- docker
6
6
7
7
jdk :
8
- # - oraclejdk8
9
- - openjdk6
8
+ - oraclejdk7
9
+ # - openjdk6
10
10
11
11
12
12
before_install :
@@ -28,4 +28,8 @@ before_install:
28
28
- travis_wait sleep 10
29
29
- docker top oracle
30
30
31
- script : " mvn test verify"
31
+ script :
32
+ - mvn test verify
33
+
34
+ after_success :
35
+ - mvn coveralls:report -Dcoveralls.repoToken=$COVERALLS_REPO_TOKEN
Original file line number Diff line number Diff line change 1
- [ ![ Download] ( https://api.bintray.com/packages/qwazer/maven/scheme2ddl/images/download.svg ) ] ( https://bintray.com/qwazer/maven/scheme2ddl/_latestVersion )   ; [ ![ Build Status] ( https://travis-ci.org/qwazer/scheme2ddl.svg?branch=master )] ( https://travis-ci.org/qwazer/scheme2ddl )
1
+ [ ![ Download] ( https://api.bintray.com/packages/qwazer/maven/scheme2ddl/images/download.svg ) ] ( https://bintray.com/qwazer/maven/scheme2ddl/_latestVersion )   ; [ ![ Build Status] ( https://travis-ci.org/qwazer/scheme2ddl.svg?branch=master )] ( https://travis-ci.org/qwazer/scheme2ddl ) & nbsp ; [ ![ Coverage Status ] ( https://coveralls.io/repos/github/qwazer/scheme2ddl/badge.svg?branch=master )] ( https://coveralls.io/github/qwazer/scheme2ddl?branch=master )
2
2
3
3
** scheme2ddl** is command line util for export oracle schema to set of ddl scripts. Provide a lot of configurations via basic command line options or advanced XML configuartion.
4
4
Original file line number Diff line number Diff line change 43
43
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
44
44
<bintray .repo>qwazer/maven</bintray .repo>
45
45
<bintray .package>scheme2ddl</bintray .package>
46
+ <coveralls .repoToken>yourcoverallsprojectrepositorytoken</coveralls .repoToken>
46
47
</properties >
47
48
48
49
121
122
</execution >
122
123
</executions >
123
124
</plugin >
125
+ <plugin >
126
+ <groupId >org.eluder.coveralls</groupId >
127
+ <artifactId >coveralls-maven-plugin</artifactId >
128
+ <version >4.3.0</version >
129
+ <configuration >
130
+ <repoToken >${coveralls.repoToken} </repoToken >
131
+ </configuration >
132
+ </plugin >
124
133
</plugins >
125
134
</build >
126
135
You can’t perform that action at this time.
0 commit comments