* [BAEL-3019] Add sample code for empty and blank string checks * [BAEL-3019] Add article link to module README * [BAEL-3019] Remove blank line in the beginning of certain tests * [BAEL-3019] Unroll tests and adhere to givenXXX_thenXXX naming convention * Revert "[BAEL-3019] Add article link to module README" This reverts commit 675295fafa53861d2bd3eb0e766665a58adda97d. * [BAEL-3019] Bump guava version for 'java-strings-2' to 28.0-jre
		
			
				
	
	
		
			113 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			XML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			XML
		
	
	
		
			Executable File
		
	
	
	
	
<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>java-strings-2</artifactId>
 | 
						|
    <version>0.1.0-SNAPSHOT</version>
 | 
						|
    <packaging>jar</packaging>
 | 
						|
    <name>java-strings-2</name>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>parent-java</artifactId>
 | 
						|
        <version>0.0.1-SNAPSHOT</version>
 | 
						|
        <relativePath>../parent-java</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.openjdk.jmh</groupId>
 | 
						|
            <artifactId>jmh-core</artifactId>
 | 
						|
            <version>${jmh-core.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.openjdk.jmh</groupId>
 | 
						|
            <artifactId>jmh-generator-annprocess</artifactId>
 | 
						|
            <version>${jmh-core.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.ibm.icu</groupId>
 | 
						|
            <artifactId>icu4j</artifactId>
 | 
						|
            <version>${icu4j.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.google.guava</groupId>
 | 
						|
            <artifactId>guava</artifactId>
 | 
						|
            <version>${guava.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-lang3</artifactId>
 | 
						|
            <version>${commons-lang3.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>junit</groupId>
 | 
						|
            <artifactId>junit</artifactId>
 | 
						|
            <version>${junit.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.hamcrest</groupId>
 | 
						|
            <artifactId>hamcrest-library</artifactId>
 | 
						|
            <version>${org.hamcrest.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-text</artifactId>
 | 
						|
            <version>${commons-text.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>javax.validation</groupId>
 | 
						|
            <artifactId>validation-api</artifactId>
 | 
						|
            <version>2.0.0.Final</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.hibernate.validator</groupId>
 | 
						|
            <artifactId>hibernate-validator</artifactId>
 | 
						|
            <version>6.0.2.Final</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>javax.el</groupId>
 | 
						|
            <artifactId>javax.el-api</artifactId>
 | 
						|
            <version>3.0.0</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.glassfish.web</groupId>
 | 
						|
            <artifactId>javax.el</artifactId>
 | 
						|
            <version>2.2.6</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <finalName>java-strings-2</finalName>
 | 
						|
        <resources>
 | 
						|
            <resource>
 | 
						|
                <directory>src/main/resources</directory>
 | 
						|
                <filtering>true</filtering>
 | 
						|
            </resource>
 | 
						|
        </resources>
 | 
						|
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                <artifactId>maven-compiler-plugin</artifactId>
 | 
						|
                <version>${maven-compiler-plugin.version}</version>
 | 
						|
                <configuration>
 | 
						|
                    <source>${java.version}</source>
 | 
						|
                    <target>${java.version}</target>
 | 
						|
                    <compilerArgument>-parameters</compilerArgument>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <commons-lang3.version>3.8.1</commons-lang3.version>
 | 
						|
        <icu4j.version>61.1</icu4j.version>
 | 
						|
        <guava.version>28.0-jre</guava.version>
 | 
						|
        <commons-text.version>1.4</commons-text.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |