|
10 | 10 | </parent> |
11 | 11 | <groupId>com.urunov</groupId> |
12 | 12 | <artifactId>shopping</artifactId> |
13 | | - <version>0.0.1</version> |
| 13 | + <version>0.0.1-SNAPSHOT</version> |
14 | 14 | <name>shopping</name> |
15 | 15 | <description>Demo project for Spring Boot</description> |
16 | 16 |
|
|
21 | 21 | <dependencies> |
22 | 22 | <dependency> |
23 | 23 | <groupId>org.springframework.boot</groupId> |
24 | | - <artifactId>spring-boot-starter</artifactId> |
| 24 | + <artifactId>spring-boot-starter-web</artifactId> |
25 | 25 | </dependency> |
26 | 26 |
|
27 | 27 | <dependency> |
|
30 | 30 | <scope>runtime</scope> |
31 | 31 | <optional>true</optional> |
32 | 32 | </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>mysql</groupId> |
| 35 | + <artifactId>mysql-connector-java</artifactId> |
| 36 | + <scope>runtime</scope> |
| 37 | + </dependency> |
33 | 38 | <dependency> |
34 | 39 | <groupId>org.projectlombok</groupId> |
35 | 40 | <artifactId>lombok</artifactId> |
36 | 41 | <optional>true</optional> |
37 | 42 | </dependency> |
38 | | - <dependency> |
39 | | - <groupId>org.springframework.boot</groupId> |
40 | | - <artifactId>spring-boot-starter-test</artifactId> |
41 | | - <scope>test</scope> |
42 | | - <exclusions> |
43 | | - <exclusion> |
44 | | - <groupId>org.junit.vintage</groupId> |
45 | | - <artifactId>junit-vintage-engine</artifactId> |
46 | | - </exclusion> |
47 | | - </exclusions> |
48 | | - </dependency> |
49 | 43 |
|
50 | | - <dependency> |
51 | | - <groupId> org.apache.cassandra</groupId> |
52 | | - <artifactId>cassandra-all</artifactId> |
53 | | - <version>0.8.1</version> |
54 | | - |
55 | | - <exclusions> |
56 | | - <exclusion> |
57 | | - <groupId>org.slf4j</groupId> |
58 | | - <artifactId>slf4j-log4j12</artifactId> |
59 | | - </exclusion> |
60 | | - <exclusion> |
61 | | - <groupId>log4j</groupId> |
62 | | - <artifactId>log4j</artifactId> |
63 | | - </exclusion> |
64 | | - </exclusions> |
65 | | - |
66 | | - </dependency> |
| 44 | + <!--I added for annotation--> |
67 | 45 | <dependency> |
68 | 46 | <groupId>org.springframework.boot</groupId> |
69 | 47 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
70 | 48 | </dependency> |
71 | | -<!-- <dependency>--> |
72 | | -<!-- <groupId>org.springframework.boot</groupId>--> |
73 | | -<!-- <artifactId>spring-boot-starter-jdbc</artifactId>--> |
74 | | -<!-- </dependency>--> |
75 | | - <dependency> |
76 | | - <groupId>org.assertj</groupId> |
77 | | - <artifactId>assertj-core</artifactId> |
78 | | - </dependency> |
79 | | - |
80 | | - <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> |
81 | | - <dependency> |
82 | | - <groupId>mysql</groupId> |
83 | | - <artifactId>mysql-connector-java</artifactId> |
84 | | - <scope>runtime</scope> |
85 | | - </dependency> |
86 | 49 | <dependency> |
87 | 50 | <groupId>org.springframework.boot</groupId> |
88 | | - <artifactId>spring-boot-starter-test</artifactId> |
89 | | - <scope>test</scope> |
90 | | - <exclusions> |
91 | | - <exclusion> |
92 | | - <groupId>org.junit.vintage</groupId> |
93 | | - <artifactId>junit-vintage-engine</artifactId> |
94 | | - </exclusion> |
95 | | - </exclusions> |
| 51 | + <artifactId>spring-boot-starter-web</artifactId> |
96 | 52 | </dependency> |
97 | 53 |
|
98 | 54 | <dependency> |
99 | | - <groupId>com.fasterxml.jackson.core</groupId> |
100 | | - <artifactId>jackson-annotations</artifactId> |
101 | | - <version>2.9.8</version> |
102 | | - </dependency> |
103 | | - <dependency> |
104 | | - <groupId>com.fasterxml.jackson.core</groupId> |
105 | | - <artifactId>jackson-core</artifactId> |
106 | | - <version>2.9.8</version> |
107 | | - </dependency> |
108 | | - <dependency> |
109 | | - <groupId>com.fasterxml.jackson.datatype</groupId> |
110 | | - <artifactId>jackson-datatype-jsr310</artifactId> |
111 | | - <version>2.9.8</version> |
112 | | - </dependency> |
113 | | - <dependency> |
114 | | - <groupId>com.fasterxml.jackson.core</groupId> |
115 | | - <artifactId>jackson-databind</artifactId> |
116 | | - <version>2.9.8</version> |
| 55 | + <groupId>javax.validation</groupId> |
| 56 | + <artifactId>validation-api</artifactId> |
| 57 | + <version>2.0.1.Final</version> |
117 | 58 | </dependency> |
| 59 | + <!----> |
118 | 60 |
|
119 | | -<!-- <!– For Working with Json Web Tokens (JWT) –>--> |
120 | | - <dependency> |
121 | | - <groupId>io.jsonwebtoken</groupId> |
122 | | - <artifactId>jjwt</artifactId> |
123 | | - <version>0.9.0</version> |
124 | | - </dependency> |
125 | 61 |
|
126 | | - <dependency> |
127 | | - <groupId>com.zaxxer</groupId> |
128 | | - <artifactId>HikariCP</artifactId> |
129 | | - </dependency> |
130 | 62 |
|
131 | | - <dependency> |
132 | | - <groupId>com.thetransactioncompany</groupId> |
133 | | - <artifactId>cors-filter</artifactId> |
134 | | - <version>2.5</version> |
135 | | - </dependency> |
136 | 63 |
|
137 | | - <dependency> |
138 | | - <groupId>javax.inject</groupId> |
139 | | - <artifactId>javax.inject</artifactId> |
140 | | - <version>1</version> |
141 | | - </dependency> |
142 | | -<!-- <dependency>--> |
143 | | -<!-- <groupId>org.mockito</groupId>--> |
144 | | -<!-- <artifactId>mockito-all</artifactId>--> |
145 | | -<!-- <version>1.10.19</version>--> |
146 | | -<!-- <scope>test</scope>--> |
147 | | -<!-- </dependency>--> |
148 | 64 |
|
149 | | -<!-- <dependency>--> |
150 | | -<!-- <groupId>org.springframework.kafka</groupId>--> |
151 | | -<!-- <artifactId>spring-kafka</artifactId>--> |
152 | | -<!-- </dependency>--> |
153 | 65 |
|
154 | | -<!-- <dependency>--> |
155 | | -<!-- <groupId>org.springframework.kafka</groupId>--> |
156 | | -<!-- <artifactId>spring-kafka-test</artifactId>--> |
157 | | -<!-- <scope>test</scope>--> |
158 | | -<!-- </dependency>--> |
159 | | - <dependency> |
160 | | - <groupId>com.google.code.gson</groupId> |
161 | | - <artifactId>gson</artifactId> |
162 | | - <version>2.8.6</version> |
163 | | - </dependency> |
164 | 66 |
|
165 | 67 | <dependency> |
166 | 68 | <groupId>org.springframework.boot</groupId> |
167 | | - <artifactId>spring-boot-starter-log4j2</artifactId> |
168 | | - </dependency> |
169 | | - |
170 | | - <dependency> |
171 | | - <groupId>com.googlecode.json-simple</groupId> |
172 | | - <artifactId>json-simple</artifactId> |
173 | | - <version>1.1.1</version> |
174 | | - </dependency> |
175 | | - |
176 | | -<!-- <dependency>--> |
177 | | -<!-- <groupId>org.apache.httpcomponents</groupId>--> |
178 | | -<!-- <artifactId>httpclient</artifactId>--> |
179 | | -<!-- <version>4.5.10</version>--> |
180 | | -<!-- </dependency>--> |
181 | | - <!-- https://mvnrepository.com/artifact/javax.validation/validation-api --> |
182 | | - <dependency> |
183 | | - <groupId>javax.validation</groupId> |
184 | | - <artifactId>validation-api</artifactId> |
185 | | - <version>2.0.0.Final</version> |
| 69 | + <artifactId>spring-boot-starter-test</artifactId> |
| 70 | + <scope>test</scope> |
| 71 | + <exclusions> |
| 72 | + <exclusion> |
| 73 | + <groupId>org.junit.vintage</groupId> |
| 74 | + <artifactId>junit-vintage-engine</artifactId> |
| 75 | + </exclusion> |
| 76 | + </exclusions> |
186 | 77 | </dependency> |
187 | | - |
188 | 78 | </dependencies> |
189 | 79 |
|
190 | 80 | <build> |
|
0 commit comments