Update pom.xml
All checks were successful
jenkins_organization/maven_project/pipeline/head This commit looks good

This commit is contained in:
first_admin 2024-08-29 18:56:21 +00:00
parent b74b63fdb5
commit 43999c92a9

16
pom.xml
View File

@ -7,6 +7,7 @@
<version>1.0-SNAPSHOT</version>
<name>hello-world</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
@ -15,4 +16,19 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>