File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 105105 <build >
106106 <outputDirectory >target/scala-${scala.binary.version} /classes</outputDirectory >
107107 <testOutputDirectory >target/scala-${scala.binary.version} /test-classes</testOutputDirectory >
108+ <plugins >
109+ <!-- Surefire runs all Java tests -->
110+ <plugin >
111+ <groupId >org.apache.maven.plugins</groupId >
112+ <artifactId >maven-surefire-plugin</artifactId >
113+ <version >2.20.1</version >
114+ <!-- Note config is repeated in scalatest config -->
115+ <configuration >
116+ <skipTests >true</skipTests >
117+ </configuration >
118+ </plugin >
119+ <!-- Scalatest runs all Scala tests -->
120+ <plugin >
121+ <groupId >org.scalatest</groupId >
122+ <artifactId >scalatest-maven-plugin</artifactId >
123+ <version >1.0</version >
124+ <!-- Note config is repeated in surefire config -->
125+ <configuration >
126+ <skipTests >true</skipTests >
127+ </configuration >
128+ </plugin >
129+ </plugins >
108130 </build >
109131</project >
You can’t perform that action at this time.
0 commit comments