| 
									
										
										
										
											2018-10-20 11:27:08 +05:30
										 |  |  | <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"> | 
					
						
							|  |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |     <groupId>com.baeldung.core-java-persistence</groupId> | 
					
						
							|  |  |  |     <artifactId>core-java-persistence</artifactId> | 
					
						
							|  |  |  |     <version>0.1.0-SNAPSHOT</version> | 
					
						
							|  |  |  |     <name>core-java-persistence</name> | 
					
						
							| 
									
										
										
										
											2019-02-10 01:47:19 +05:30
										 |  |  |     <packaging>jar</packaging> | 
					
						
							|  |  |  |     	 | 
					
						
							| 
									
										
										
										
											2018-10-20 11:27:08 +05:30
										 |  |  |     <parent> | 
					
						
							|  |  |  |         <groupId>com.baeldung</groupId> | 
					
						
							|  |  |  |         <artifactId>parent-java</artifactId> | 
					
						
							|  |  |  |         <version>0.0.1-SNAPSHOT</version> | 
					
						
							|  |  |  |         <relativePath>../../parent-java</relativePath> | 
					
						
							|  |  |  |     </parent> | 
					
						
							| 
									
										
										
										
											2019-02-10 01:47:19 +05:30
										 |  |  |     	 | 
					
						
							| 
									
										
										
										
											2018-10-20 11:27:08 +05:30
										 |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.assertj</groupId> | 
					
						
							|  |  |  |             <artifactId>assertj-core</artifactId> | 
					
						
							|  |  |  |             <version>${assertj-core.version}</version> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>com.h2database</groupId> | 
					
						
							|  |  |  |             <artifactId>h2</artifactId> | 
					
						
							|  |  |  |             <version>${h2database.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.apache.commons</groupId> | 
					
						
							|  |  |  |             <artifactId>commons-dbcp2</artifactId> | 
					
						
							|  |  |  |             <version>${commons-dbcp2.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>com.zaxxer</groupId> | 
					
						
							|  |  |  |             <artifactId>HikariCP</artifactId> | 
					
						
							|  |  |  |             <version>${HikariCP.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>com.mchange</groupId> | 
					
						
							|  |  |  |             <artifactId>c3p0</artifactId> | 
					
						
							|  |  |  |             <version>${c3p0.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-web</artifactId> | 
					
						
							|  |  |  |             <version>${springframework.spring-web.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter</artifactId> | 
					
						
							|  |  |  |             <version>${springframework.boot.spring-boot-starter.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |     </dependencies> | 
					
						
							| 
									
										
										
										
											2019-02-10 01:47:19 +05:30
										 |  |  |     	 | 
					
						
							| 
									
										
										
										
											2018-10-20 11:27:08 +05:30
										 |  |  |     <build> | 
					
						
							|  |  |  |         <finalName>core-java-persistence</finalName> | 
					
						
							|  |  |  |         <resources> | 
					
						
							|  |  |  |             <resource> | 
					
						
							|  |  |  |                 <directory>src/main/resources</directory> | 
					
						
							|  |  |  |                 <filtering>true</filtering> | 
					
						
							|  |  |  |             </resource> | 
					
						
							|  |  |  |         </resources> | 
					
						
							| 
									
										
										
										
											2019-02-10 01:47:19 +05:30
										 |  |  |     </build> | 
					
						
							|  |  |  |     	 | 
					
						
							| 
									
										
										
										
											2018-10-20 11:27:08 +05:30
										 |  |  |     <properties> | 
					
						
							|  |  |  |         <assertj-core.version>3.10.0</assertj-core.version> | 
					
						
							|  |  |  |         <h2database.version>1.4.197</h2database.version> | 
					
						
							|  |  |  |         <commons-dbcp2.version>2.4.0</commons-dbcp2.version> | 
					
						
							|  |  |  |         <HikariCP.version>3.2.0</HikariCP.version> | 
					
						
							|  |  |  |         <c3p0.version>0.9.5.2</c3p0.version> | 
					
						
							|  |  |  |         <springframework.boot.spring-boot-starter.version>1.5.8.RELEASE</springframework.boot.spring-boot-starter.version> | 
					
						
							|  |  |  |         <springframework.spring-web.version>4.3.4.RELEASE</springframework.spring-web.version> | 
					
						
							|  |  |  |     </properties> | 
					
						
							| 
									
										
										
										
											2019-02-10 01:47:19 +05:30
										 |  |  |     	 | 
					
						
							| 
									
										
										
										
											2018-07-28 03:44:51 -03:00
										 |  |  | </project> |