* simple-thymeleaf-expression * expression-update * instanceof * instanceof * instanceof * update * Update pom.xml * Update pom.xml * instanceof * update * instanceofnew * instanceofnew * instanceofnew * instanceofnew * instanceofnew * instanceofnew * update * pom * Revert "pom" This reverts commit c5075e6ba7e1e91159864d57bcbc18dd90314e16. * Revert "Update pom.xml" This reverts commit 7dd02df1aea201572fb64d8bc4a2990a94b6b4c0. * Revert "Revert "Update pom.xml"" This reverts commit a02a1f67d16eb0bc781cc588af48f36fcc93d601. * Update pom.xml * Revert "Update pom.xml" This reverts commit 7dd02df1aea201572fb64d8bc4a2990a94b6b4c0. * Update pom.xml * JAVA-8436: Remove AssertJ depenendency from the child modules - part 4 * Update pom.xml * JAVA-8436: Remove AssertJ depenendency from the child modules - part 4 * BAEL-5979 Instanceof Alternatives
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.5 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>
 | 
						|
    <artifactId>core-java-16</artifactId>
 | 
						|
    <version>0.1.0-SNAPSHOT</version>
 | 
						|
    <name>core-java-16</name>
 | 
						|
    <packaging>jar</packaging>
 | 
						|
    <url>http://maven.apache.org</url>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>parent-modules</artifactId>
 | 
						|
        <version>1.0.0-SNAPSHOT</version>
 | 
						|
        <relativePath>../../</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-lang3</artifactId>
 | 
						|
            <version>${commons-lang3.version}</version>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                <artifactId>maven-compiler-plugin</artifactId>
 | 
						|
                <version>${maven-compiler-plugin.version}</version>
 | 
						|
                <configuration>
 | 
						|
                    <release>${maven.compiler.release}</release>
 | 
						|
                    <compilerArgs>--enable-preview</compilerArgs>
 | 
						|
                    <source>${maven.compiler.source.version}</source>
 | 
						|
                    <target>${maven.compiler.target.version}</target>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                <artifactId>maven-surefire-plugin</artifactId>
 | 
						|
                <version>${surefire.plugin.version}</version>
 | 
						|
                <configuration>
 | 
						|
                    <argLine>--enable-preview</argLine>
 | 
						|
                    <forkCount>1</forkCount>
 | 
						|
                </configuration>
 | 
						|
                <dependencies>
 | 
						|
                    <dependency>
 | 
						|
                        <groupId>org.apache.maven.surefire</groupId>
 | 
						|
                        <artifactId>surefire-api</artifactId>
 | 
						|
                        <version>${surefire.plugin.version}</version>
 | 
						|
                    </dependency>
 | 
						|
                </dependencies>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <maven.compiler.source.version>16</maven.compiler.source.version>
 | 
						|
        <maven.compiler.target.version>16</maven.compiler.target.version>
 | 
						|
        <maven.compiler.release>16</maven.compiler.release>
 | 
						|
        <surefire.plugin.version>3.0.0-M5</surefire.plugin.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project>
 |