Skip to content

Commit

Permalink
Plugins to pom.xml file
Browse files Browse the repository at this point in the history
added all the plugins from (Krav til prosjektkonfigurasjon i Maven), to the pom.xml file
  • Loading branch information
EspenTinius committed Feb 4, 2026
1 parent 19c6863 commit 4187e22
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,41 @@

<groupId>edu.ntnu.idi.idatt2003.g40.mappe</groupId>
<artifactId>mappe</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.1-SNAPSHOT</version>

<properties>
<maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
</plugin>

<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
</plugin>
</plugins>
</build>


</project>

0 comments on commit 4187e22

Please sign in to comment.