Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.88 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <parent>
  7.         <groupId>org.springframework.boot</groupId>
  8.         <artifactId>spring-boot-starter-parent</artifactId>
  9.         <version>1.5.4.RELEASE</version>
  10.     </parent>
  11.  
  12.     <groupId>com.webapplication</groupId>
  13.     <artifactId>itsuna</artifactId>
  14.     <packaging>pom</packaging>
  15.     <version>1.0-SNAPSHOT</version>
  16.     <name>itsuna</name>
  17.  
  18.     <modules>
  19.         <module>base</module>
  20.         <module>resources</module>
  21.     </modules>
  22.  
  23.     <build>
  24.         <pluginManagement>
  25.             <plugins>
  26.                 <plugin>
  27.                     <groupId>org.apache.maven.plugins</groupId>
  28.                     <artifactId>maven-compiler-plugin</artifactId>
  29.                     <version>${maven-compiler-plugin.version}</version>
  30.                     <configuration>
  31.                         <source>${java.version}</source>
  32.                         <target>${java.version}</target>
  33.                     </configuration>
  34.                 </plugin>
  35.  
  36.                 <plugin>
  37.                     <groupId>org.apache.maven.plugins</groupId>
  38.                     <artifactId>maven-javadoc-plugin</artifactId>
  39.                     <version>${maven-javadoc-plugin.version}</version>
  40.                     <executions>
  41.                         <execution>
  42.                             <id>attach-javadocs</id>
  43.                             <phase>package</phase>
  44.                             <configuration>
  45.                                 <additionalparam>-Xdoclint:none</additionalparam>
  46.                             </configuration>
  47.                         </execution>
  48.                     </executions>
  49.                 </plugin>
  50.             </plugins>
  51.         </pluginManagement>
  52.     </build>
  53.  
  54.     <dependencies>
  55.         <dependency>
  56.             <groupId>junit</groupId>
  57.             <artifactId>junit</artifactId>
  58.             <version>4.12</version>
  59.             <scope>test</scope>
  60.         </dependency>
  61.         <dependency>
  62.             <groupId>org.apache.maven.plugins</groupId>
  63.             <artifactId>maven-war-plugin</artifactId>
  64.             <version>3.1.0</version>
  65.         </dependency>
  66.         <dependency>
  67.             <groupId>org.apache.maven.plugins</groupId>
  68.             <artifactId>maven-jar-plugin</artifactId>
  69.             <version>3.0.2</version>
  70.         </dependency>
  71.  
  72.     </dependencies>
  73.  
  74.     <properties>
  75.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  76.         <java.version>1.8</java.version>
  77.         <maven.compiler.source>1.8</maven.compiler.source>
  78.         <maven.compiler.target>1.8</maven.compiler.target>
  79.     </properties>
  80.  
  81. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement