comparison spring-boot-playground/pom.xml @ 4:92d52e4ac567

JPA hinzugefuegt.
author Dirk Olmes <dirk.olmes@codedo.de>
date Thu, 13 Aug 2020 15:31:38 +0200
parents 60afb461bf6c
children 227f3105fedd
comparison
equal deleted inserted replaced
3:b4221c1389af 4:92d52e4ac567
40 <dependencies> 40 <dependencies>
41 <dependency> 41 <dependency>
42 <groupId>org.springframework.boot</groupId> 42 <groupId>org.springframework.boot</groupId>
43 <artifactId>spring-boot-starter-web</artifactId> 43 <artifactId>spring-boot-starter-web</artifactId>
44 </dependency> 44 </dependency>
45 45 <dependency>
46 <groupId>org.springframework.boot</groupId>
47 <artifactId>spring-boot-starter-data-jpa</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>com.h2database</groupId>
51 <artifactId>h2</artifactId>
52 </dependency>
53
46 <dependency> 54 <dependency>
47 <groupId>org.springframework.boot</groupId> 55 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-starter-test</artifactId> 56 <artifactId>spring-boot-starter-test</artifactId>
49 <scope>test</scope> 57 <scope>test</scope>
50 <exclusions> 58 <exclusions>