File tree 4 files changed +48
-51
lines changed
4 files changed +48
-51
lines changed Original file line number Diff line number Diff line change @@ -2,4 +2,7 @@ language: java
2
2
jdk :
3
3
- oraclejdk8
4
4
services :
5
- - mongodb
5
+ - mongodb
6
+ after_success :
7
+ - bash <(curl -s https://codecov.io/bash)
8
+
Original file line number Diff line number Diff line change
1
+ ignore :
2
+ - " src/main/java/com/aventstack/extentreports/reporter/ExtentKlovReporter.java"
3
+ - " src/main/java/com/aventstack/extentreports/mediastorage/impl*"
4
+
Original file line number Diff line number Diff line change 97
97
</reporting >
98
98
99
99
<build >
100
+ <sourceDirectory >src/main/java</sourceDirectory >
100
101
<plugins >
101
102
<plugin >
102
103
<groupId >org.apache.maven.plugins</groupId >
126
127
</execution >
127
128
</executions >
128
129
</plugin >
130
+ <plugin >
131
+ <groupId >org.jacoco</groupId >
132
+ <artifactId >jacoco-maven-plugin</artifactId >
133
+ <version >0.7.9</version >
134
+ <executions >
135
+ <execution >
136
+ <goals >
137
+ <goal >prepare-agent</goal >
138
+ </goals >
139
+ </execution >
140
+ <execution >
141
+ <id >report</id >
142
+ <phase >test</phase >
143
+ <goals >
144
+ <goal >report</goal >
145
+ </goals >
146
+ </execution >
147
+ </executions >
148
+ </plugin >
129
149
</plugins >
130
150
</build >
131
151
Original file line number Diff line number Diff line change 97
97
</reporting >
98
98
99
99
<build >
100
+ <sourceDirectory >src/main/java</sourceDirectory >
100
101
<plugins >
101
102
<plugin >
102
103
<groupId >org.apache.maven.plugins</groupId >
112
113
<artifactId >maven-resources-plugin</artifactId >
113
114
<version >2.7</version >
114
115
</plugin >
116
+ <plugin >
117
+ <groupId >org.jacoco</groupId >
118
+ <artifactId >jacoco-maven-plugin</artifactId >
119
+ <version >0.7.9</version >
120
+ <executions >
121
+ <execution >
122
+ <goals >
123
+ <goal >prepare-agent</goal >
124
+ </goals >
125
+ </execution >
126
+ <execution >
127
+ <id >report</id >
128
+ <phase >test</phase >
129
+ <goals >
130
+ <goal >report</goal >
131
+ </goals >
132
+ </execution >
133
+ </executions >
134
+ </plugin >
115
135
</plugins >
116
136
</build >
117
137
118
- <profiles >
119
- <profile >
120
- <id >release-sign-artifacts</id >
121
- <activation >
122
- <property >
123
- <name >performRelease</name >
124
- <value >true</value >
125
- </property >
126
- </activation >
127
- <properties >
128
- <gpg .keyname>7A7DAF8A</gpg .keyname>
129
- <!-- GPG Key ID to use for signing -->
130
- <release .username>anshooarora</release .username>
131
- <!-- username for our svn repository -->
132
- </properties >
133
- <build >
134
- <resources >
135
- </resources >
136
- <plugins >
137
- <plugin >
138
- <groupId >org.apache.maven.plugins</groupId >
139
- <artifactId >maven-source-plugin</artifactId >
140
- <version >2.3</version >
141
- <executions >
142
- <execution >
143
- <id >attach-sources</id >
144
- <goals >
145
- <goal >jar</goal >
146
- </goals >
147
- </execution >
148
- </executions >
149
- </plugin >
150
- <plugin >
151
- <groupId >org.apache.maven.plugins</groupId >
152
- <artifactId >maven-javadoc-plugin</artifactId >
153
- <version >2.3</version >
154
- <executions >
155
- <execution >
156
- <id >attach-javadocs</id >
157
- <goals >
158
- <goal >jar</goal >
159
- </goals >
160
- </execution >
161
- </executions >
162
- </plugin >
163
- </plugins >
164
- </build >
165
- </profile >
166
- </profiles >
167
-
168
138
<distributionManagement >
169
139
<snapshotRepository >
170
140
<id >ossrh</id >
You can’t perform that action at this time.
0 commit comments