53 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
<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</groupId>
 | 
						|
    <artifactId>single-module-caching</artifactId>
 | 
						|
    <version>1.0-SNAPSHOT</version>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.google.guava</groupId>
 | 
						|
            <artifactId>guava</artifactId>
 | 
						|
            <version>31.0.1-jre</version>
 | 
						|
        </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>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <maven.compiler.source>8</maven.compiler.source>
 | 
						|
        <maven.compiler.target>8</maven.compiler.target>
 | 
						|
    </properties>
 | 
						|
</project> |