File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
appengine-java25/helloworld Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 9494<!-- <!– for hot reload of the web application–>-->
9595 <outputDirectory >${project.build.directory} /${project.build.finalName} /WEB-INF/classes</outputDirectory >
9696 <plugins >
97+ <plugin >
98+ <groupId >org.apache.maven.plugins</groupId >
99+ <artifactId >maven-failsafe-plugin</artifactId >
100+ <version >3.3.1</version >
101+ </plugin >
102+ <plugin >
103+ <groupId >org.apache.maven.plugins</groupId >
104+ <artifactId >maven-surefire-plugin</artifactId >
105+ <version >3.3.1</version >
106+ </plugin >
107+ <plugin >
108+ <groupId >org.apache.maven.plugins</groupId >
109+ <artifactId >maven-compiler-plugin</artifactId >
110+ <version >3.13.0</version >
111+ </plugin >
112+ <plugin >
113+ <groupId >org.jacoco</groupId >
114+ <artifactId >jacoco-maven-plugin</artifactId >
115+ <version >0.8.14</version >
116+ <executions >
117+ <execution >
118+ <goals >
119+ <goal >prepare-agent</goal >
120+ </goals >
121+ </execution >
122+ <execution >
123+ <id >report</id >
124+ <phase >prepare-package</phase >
125+ <goals >
126+ <goal >report</goal >
127+ </goals >
128+ </execution >
129+ </executions >
130+ </plugin >
97131 <plugin >
98132 <groupId >org.apache.maven.plugins</groupId >
99133 <artifactId >maven-war-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments