We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ade6a1 + 6e4beb0 commit 4f8464cCopy full SHA for 4f8464c
pom.xml
@@ -5,6 +5,30 @@
5
<artifactId>lambda-java-example</artifactId>
6
<version>0.0.1-SNAPSHOT</version>
7
<name>lambda-java-example</name>
8
+
9
+ <build>
10
+ <plugins>
11
+ <plugin>
12
+ <groupId>org.codehaus.mojo</groupId>
13
+ <artifactId>cobertura-maven-plugin</artifactId>
14
+ <version>2.5.1</version>
15
+ <configuration>
16
+ <formats>
17
+ <format>xml</format>
18
+ </formats>
19
+ </configuration>
20
+ <executions>
21
+ <execution>
22
+ <phase>package</phase>
23
+ <goals>
24
+ <goal>cobertura</goal>
25
+ </goals>
26
+ </execution>
27
+ </executions>
28
+ </plugin>
29
+ </plugins>
30
+ </build>
31
32
<dependencies>
33
<dependency>
34
<groupId>com.amazonaws</groupId>
@@ -31,4 +55,4 @@
55
56
57
</dependencies>
-</project>
58
+</project>
0 commit comments