Skip to content
Snippets Groups Projects
Commit ea60e44e authored by Hallvard Trætteberg's avatar Hallvard Trætteberg
Browse files

skipTests for å kunne hoppe over tester

parent 1ab3e8a0
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<skipTests>false</skipTests>
</properties>
<dependencyManagement>
......@@ -50,6 +51,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<skipTests>${skipTests}</skipTests>
</configuration>
</plugin>
</plugins>
</pluginManagement>
......
......@@ -84,7 +84,8 @@
<!-- Default configuration for running -->
<!-- Usage: mvn javafx:run -->
<configuration>
<mainClass>app.App</mainClass>
<!-- syntax: module-name/full-app-class-name -->
<mainClass>calc.ui/ui.App</mainClass>
</configuration>
</plugin>
</plugins>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment