| 
									
										
										
										
											2022-02-13 23:56:05 +01:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							| 
									
										
										
										
											2023-04-05 07:14:09 +05:30
										 |  |  |     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"> | 
					
						
							| 
									
										
										
										
											2022-02-13 23:56:05 +01:00
										 |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |     <groupId>com.baeldung</groupId> | 
					
						
							| 
									
										
										
										
											2022-02-20 22:51:08 +01:00
										 |  |  |     <artifactId>single-module-caching</artifactId> | 
					
						
							| 
									
										
										
										
											2022-02-13 23:56:05 +01:00
										 |  |  |     <version>1.0-SNAPSHOT</version> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>com.google.guava</groupId> | 
					
						
							|  |  |  |             <artifactId>guava</artifactId> | 
					
						
							| 
									
										
										
										
											2022-05-15 08:53:05 +02:00
										 |  |  |             <version>${guava.version}</version> | 
					
						
							| 
									
										
										
										
											2022-02-13 23:56:05 +01:00
										 |  |  |         </dependency> | 
					
						
							|  |  |  |     </dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <build> | 
					
						
							|  |  |  |         <plugins> | 
					
						
							|  |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                 <artifactId>maven-assembly-plugin</artifactId> | 
					
						
							|  |  |  |                 <version>3.3.0</version> | 
					
						
							|  |  |  |                 <configuration> | 
					
						
							|  |  |  |                     <descriptorRefs> | 
					
						
							|  |  |  |                         <descriptorRef>jar-with-dependencies</descriptorRef> | 
					
						
							|  |  |  |                     </descriptorRefs> | 
					
						
							|  |  |  |                     <archive> | 
					
						
							|  |  |  |                         <manifest> | 
					
						
							|  |  |  |                             <addClasspath>true</addClasspath> | 
					
						
							|  |  |  |                             <mainClass>com.baeldung.maven_caching.MavenCachingMain</mainClass> | 
					
						
							|  |  |  |                         </manifest> | 
					
						
							|  |  |  |                     </archive> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							|  |  |  |                 <executions> | 
					
						
							|  |  |  |                     <execution> | 
					
						
							|  |  |  |                         <id>assemble-all</id> | 
					
						
							|  |  |  |                         <phase>package</phase> | 
					
						
							|  |  |  |                         <goals> | 
					
						
							|  |  |  |                             <goal>single</goal> | 
					
						
							|  |  |  |                         </goals> | 
					
						
							|  |  |  |                     </execution> | 
					
						
							|  |  |  |                 </executions> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							|  |  |  |         </plugins> | 
					
						
							|  |  |  |     </build> | 
					
						
							| 
									
										
										
										
											2022-02-20 22:51:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <properties> | 
					
						
							|  |  |  |         <maven.compiler.source>8</maven.compiler.source> | 
					
						
							|  |  |  |         <maven.compiler.target>8</maven.compiler.target> | 
					
						
							| 
									
										
										
										
											2023-01-27 03:42:54 +01:00
										 |  |  |         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
					
						
							| 
									
										
										
										
											2022-08-19 07:36:35 +01:00
										 |  |  |         <guava.version>31.1-jre</guava.version> | 
					
						
							| 
									
										
										
										
											2022-02-20 22:51:08 +01:00
										 |  |  |     </properties> | 
					
						
							| 
									
										
										
										
											2022-05-08 16:36:25 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-13 23:56:05 +01:00
										 |  |  | </project> |