Advertisement
Guest User

Untitled

a guest
May 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.32 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>se.jonkri</groupId>
  7. <artifactId>Calculator</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9.     <dependencies>
  10.         <dependency>
  11.             <groupId>org.postgresql</groupId>
  12.             <artifactId>postgresql</artifactId>
  13.             <version>42.2.1</version>
  14.         </dependency>
  15.     <dependency>
  16.       <groupId>javax</groupId>
  17.       <artifactId>javaee-api</artifactId>
  18.       <version>7.0</version>
  19.       <scope>provided</scope>
  20.     </dependency>
  21.     </dependencies>
  22.    
  23.      <build>
  24.     <plugins>
  25.       <plugin>
  26.         <groupId>org.apache.maven.plugins</groupId>
  27.         <artifactId>maven-compiler-plugin</artifactId>
  28.         <version>3.7.0</version>
  29.         <configuration>
  30.           <source>1.8</source>
  31.           <target>1.8</target>
  32.         </configuration>
  33.       </plugin>
  34.       <plugin>
  35.         <artifactId>maven-war-plugin</artifactId>
  36.         <version>3.2.0</version>
  37.       </plugin>
  38.       <plugin>
  39.         <groupId>org.wildfly.plugins</groupId>
  40.         <artifactId>wildfly-maven-plugin</artifactId>
  41.         <version>1.2.0.Final</version>
  42.       </plugin>
  43.     </plugins>
  44.   </build>
  45.  
  46. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement