Student User
2019-08-08 7be4a5f7fc140d1495e739d8a02107879f2b9647
commit | author | age
fe9006 1 <?xml version="1.0" encoding="UTF-8" ?>
RS 2 <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">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.springframework.boot</groupId>
6         <artifactId>spring-boot-starter-parent</artifactId>
7         <version>2.1.6.RELEASE</version>
8         <relativePath /> <!-- lookup parent from repository -->
9     </parent>
10     <groupId>com.redhat</groupId>
11     <artifactId>movies</artifactId>
12     <version>1.0.0</version>
13     <name>movies</name>
14     <description>Demo project for Spring Boot</description>
15     
16     <properties>
17         <java.version>1.8</java.version>
18     </properties>
19     
20     <dependencies>
21         <dependency>
22             <groupId>org.springframework.boot</groupId>
23             <artifactId>spring-boot-starter-web</artifactId>
24         </dependency>
25         
26         <dependency>
27             <groupId>org.springframework.boot</groupId>
28             <artifactId>spring-boot-starter-test</artifactId>
29             <scope>test</scope>
30         </dependency>
31     </dependencies>
32     
33     <build>
34             <finalName>movies</finalName>
35         <plugins>
36             <plugin>
37                 <groupId>org.springframework.boot</groupId>
38                 <artifactId>spring-boot-maven-plugin</artifactId>
39             </plugin>
40             <plugin>
41                 <groupId>org.apache.maven.plugins</groupId>
42                 <artifactId>maven-pmd-plugin</artifactId>
43                 <version>3.12.0</version>
44                 <configuration>
45                     <rulesets>
46                         <ruleset>/category/java/bestpractices.xml</ruleset>
47                     </rulesets>
48                     <failOnViolation>true</failOnViolation>
49                     <printFailingErrors>true</printFailingErrors>
50                 </configuration>
51             </plugin>
52         </plugins>
53     </build>
54     
55 </project>