* Bean Object, server side and client side example for event streaming example * BAEL-1628 Access a File from the Classpath in a Spring Application * inputstream retrieval added * Removed files related to evaluation article * + Aligning code to the article. Removed Utility methods and classes * Precommit fix * PMD fixes * Code Review changes Refactored : whenResourceUtils_thenReadSuccessful * BAEL-1934 * +indentation correction in pom.xml * synced with master * Precommit : rebase * BAEL-1782 * BAEL - 2166 : Password Generation * Removed unnecessary javaDoc * Segregated utility method
		
			
				
	
	
		
			118 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<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>java-strings</artifactId>
 | 
						|
    <version>0.1.0-SNAPSHOT</version>
 | 
						|
    <packaging>jar</packaging>
 | 
						|
    <name>java-strings</name>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>parent-java</artifactId>
 | 
						|
        <version>0.0.1-SNAPSHOT</version>
 | 
						|
        <relativePath>../parent-java</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>commons-io</groupId>
 | 
						|
            <artifactId>commons-io</artifactId>
 | 
						|
            <version>${commons-io.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-lang3</artifactId>
 | 
						|
            <version>${commons-lang3.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>log4j</groupId>
 | 
						|
            <artifactId>log4j</artifactId>
 | 
						|
            <version>${log4j.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>commons-codec</groupId>
 | 
						|
            <artifactId>commons-codec</artifactId>
 | 
						|
            <version>${commons-codec.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- test scoped -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.assertj</groupId>
 | 
						|
            <artifactId>assertj-core</artifactId>
 | 
						|
            <version>${assertj.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <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>com.vdurmont</groupId>
 | 
						|
            <artifactId>emoji-java</artifactId>
 | 
						|
            <version>4.0.0</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- Added for password generation -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.passay</groupId>
 | 
						|
            <artifactId>passay</artifactId>
 | 
						|
            <version>1.3.1</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-text</artifactId>
 | 
						|
            <version>1.4</version>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <finalName>java-strings</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>3.1</version>
 | 
						|
                <configuration>
 | 
						|
                    <source>1.8</source>
 | 
						|
                    <target>1.8</target>
 | 
						|
                    <compilerArgument>-parameters</compilerArgument>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <!-- util -->
 | 
						|
        <commons-lang3.version>3.5</commons-lang3.version>
 | 
						|
        <commons-codec.version>1.10</commons-codec.version>
 | 
						|
        <!-- testing -->
 | 
						|
        <assertj.version>3.6.1</assertj.version>
 | 
						|
        <jmh-core.version>1.19</jmh-core.version>
 | 
						|
        <icu4j.version>61.1</icu4j.version>
 | 
						|
        <guava.version>26.0-jre</guava.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |