Projekt

Obecné

Profil

« Předchozí | Další » 

Revize f7f24bbe

Přidáno uživatelem Petr Urban před téměř 3 roky(ů)

#44 separated plugin versions into properties tag.

Zobrazit rozdíly:

pom.xml
8 8
		<version>2.4.4</version>
9 9
		<relativePath/> <!-- lookup parent from repository -->
10 10
	</parent>
11

  
11 12
	<groupId>cz.zcu.fav.kiv</groupId>
12 13
	<artifactId>anti-pattern-detection-app</artifactId>
13
	<version>1.0.0</version>
14
	<version>1.2.0</version>
14 15
	<packaging>war</packaging>
15 16
	<name>anti-pattern-detection-app</name>
16 17
	<description>Basic web application for anti pattern detection</description>
18

  
17 19
	<properties>
18 20
		<java.version>11</java.version>
21
		<org.reflecions.version>0.9.12</org.reflecions.version>
22
		<org.jsoup.version>1.14.3</org.jsoup.version>
23
		<com.fasterxml.jackson.core.version>2.13.2</com.fasterxml.jackson.core.version>
24
		<org.junit.jupiter.version>5.4.0</org.junit.jupiter.version>
25
		<org.apache.maven.plugins.version>2.22.0</org.apache.maven.plugins.version>
19 26
	</properties>
27
	
20 28
	<dependencies>
29

  
21 30
		<dependency>
22 31
			<groupId>org.springframework.boot</groupId>
23 32
			<artifactId>spring-boot-starter</artifactId>
......
28 37
			<artifactId>spring-boot-starter-test</artifactId>
29 38
			<scope>test</scope>
30 39
		</dependency>
40

  
31 41
		<dependency>
32 42
			<groupId>org.springframework.boot</groupId>
33 43
			<artifactId>spring-boot-starter-web</artifactId>
34 44
		</dependency>
45

  
35 46
		<dependency>
36 47
			<groupId>mysql</groupId>
37 48
			<artifactId>mysql-connector-java</artifactId>
38 49
			<scope>runtime</scope>
39 50
		</dependency>
51

  
40 52
		<dependency>
41 53
			<groupId>org.springframework.boot</groupId>
42 54
			<artifactId>spring-boot-starter-data-jpa</artifactId>
43 55
		</dependency>
56

  
44 57
		<dependency>
45 58
			<groupId>org.springframework.boot</groupId>
46 59
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
47 60
		</dependency>
61

  
48 62
		<dependency>
49 63
			<groupId>org.reflections</groupId>
50 64
			<artifactId>reflections</artifactId>
51
			<version>0.9.12</version>
65
			<version>${org.reflecions.version}</version>
52 66
		</dependency>
67

  
53 68
		<!-- jsoup HTML parser library @ https://jsoup.org/ -->
54 69
		<dependency>
55 70
			<groupId>org.jsoup</groupId>
56 71
			<artifactId>jsoup</artifactId>
57
			<version>1.14.3</version>
72
			<version>${org.jsoup.version}</version>
58 73
		</dependency>
74

  
59 75
		<!-- Jackson libraries for parsing json files -->
60 76
		<dependency>
61 77
			<groupId>com.fasterxml.jackson.core</groupId>
62 78
			<artifactId>jackson-core</artifactId>
63
			<version>2.13.2</version>
79
			<version>${com.fasterxml.jackson.core.version}</version>
64 80
		</dependency>
81

  
65 82
		<dependency>
66 83
			<groupId>com.fasterxml.jackson.core</groupId>
67
			<artifactId>jackson-databind</artifactId>
68
			<version>2.13.2</version>
84
			<artifactId>jackson-annotations</artifactId>
85
			<version>${com.fasterxml.jackson.core.version}</version>
69 86
		</dependency>
87

  
70 88
		<dependency>
71 89
			<groupId>com.fasterxml.jackson.core</groupId>
72
			<artifactId>jackson-annotations</artifactId>
73
			<version>2.13.2</version>
90
			<artifactId>jackson-databind</artifactId>
91
			<version>${com.fasterxml.jackson.core.version}</version>
74 92
		</dependency>
93

  
94

  
75 95
		<!-- Junit libraries for unit tests-->
76 96
		<dependency>
77 97
			<groupId>org.junit.jupiter</groupId>
78 98
			<artifactId>junit-jupiter-api</artifactId>
79
			<version>5.4.0</version>
99
			<version>${org.junit.jupiter.version}</version>
80 100
			<scope>test</scope>
81 101
		</dependency>
102

  
82 103
		<dependency>
83 104
			<groupId>org.junit.jupiter</groupId>
84 105
			<artifactId>junit-jupiter-engine</artifactId>
85
			<version>5.4.0</version>
106
			<version>${org.junit.jupiter.version}</version>
86 107
			<scope>test</scope>
87 108
		</dependency>
109

  
88 110
	</dependencies>
89 111

  
90 112
	<build>
91 113
		<plugins>
114

  
92 115
			<plugin>
93 116
				<groupId>org.springframework.boot</groupId>
94 117
				<artifactId>spring-boot-maven-plugin</artifactId>
95 118
			</plugin>
119

  
96 120
			<plugin>
121
				<groupId>org.apache.maven.plugins</groupId>
97 122
				<artifactId>maven-surefire-plugin</artifactId>
98
				<version>2.22.0</version>
123
				<version>${org.apache.maven.plugins.version}</version>
99 124
				<configuration>
100 125
					<skipTests>false</skipTests>
101 126
				</configuration>
102 127
			</plugin>
128

  
103 129
			<plugin>
130
				<groupId>org.apache.maven.plugins</groupId>
104 131
				<artifactId>maven-failsafe-plugin</artifactId>
105
				<version>2.22.0</version>
132
				<version>${org.apache.maven.plugins.version}</version>
106 133
			</plugin>
134

  
107 135
		</plugins>
108 136
	</build>
109 137

  

Také k dispozici: Unified diff