Untitled

 avatar
unknown
java
2 years ago
1.6 kB
7
Indexable
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
   <modelVersion>4.0.0</modelVersion> 
  
   <groupId>org.example</groupId> 
   <artifactId>stream-api</artifactId> 
   <version>1.0-SNAPSHOT</version> 
  
   <build> 
     <plugins> 
       <plugin> 
         <groupId>org.apache.maven.plugins</groupId> 
         <artifactId>maven-compiler-plugin</artifactId> 
         <version>3.8.1</version> 
         <configuration> 
           <source>11</source> 
           <target>11</target> 
         </configuration> 
       </plugin> 
       <plugin> 
         <groupId>org.apache.maven.plugins</groupId> 
         <artifactId>maven-surefire-plugin</artifactId> 
         <!-- JUnit 5 requires Surefire version 2.22.0 or higher --> 
         <version>2.22.0</version> 
       </plugin> 
     </plugins> 
   </build> 
  
   <dependencies> 
     <dependency> 
       <groupId>org.junit.jupiter</groupId> 
       <artifactId>junit-jupiter-engine</artifactId> 
       <version>5.8.2</version> 
       <scope>test</scope> 
     </dependency> 
     <dependency> 
       <groupId>org.junit.jupiter</groupId> 
       <artifactId>junit-jupiter-params</artifactId> 
       <version>5.8.2</version> 
       <scope>test</scope> 
     </dependency> 
   </dependencies> 
 </project>
Editor is loading...