133 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			133 lines
		
	
	
		
			5.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>
 | 
						|
    <artifactId>core-java-io-files</artifactId>
 | 
						|
    <version>0.1.0-SNAPSHOT</version>
 | 
						|
    <name>core-java-io-files</name>
 | 
						|
    <packaging>jar</packaging>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>parent-java</artifactId>
 | 
						|
        <version>0.0.1-SNAPSHOT</version>
 | 
						|
        <relativePath>../../parent-java</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <!-- test scoped -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.assertj</groupId>
 | 
						|
            <artifactId>assertj-core</artifactId>
 | 
						|
            <version>${assertj.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.hsqldb</groupId>
 | 
						|
            <artifactId>hsqldb</artifactId>
 | 
						|
            <version>${hsqldb.version}</version>
 | 
						|
            <scope>runtime</scope>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <finalName>core-java-io-files</finalName>
 | 
						|
        <resources>
 | 
						|
            <resource>
 | 
						|
                <directory>src/main/resources</directory>
 | 
						|
                <filtering>true</filtering>
 | 
						|
            </resource>
 | 
						|
        </resources>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.codehaus.mojo</groupId>
 | 
						|
                <artifactId>exec-maven-plugin</artifactId>
 | 
						|
                <version>${exec-maven-plugin.version}</version>
 | 
						|
                <configuration>
 | 
						|
                    <executable>java</executable>
 | 
						|
                    <mainClass>com.baeldung.outofmemoryerror.OutOfMemoryGCLimitExceed</mainClass>
 | 
						|
                    <arguments>
 | 
						|
                        <argument>-Xmx300m</argument>
 | 
						|
                        <argument>-XX:+UseParallelGC</argument>
 | 
						|
                        <argument>-classpath</argument>
 | 
						|
                        <classpath />
 | 
						|
                        <argument>com.baeldung.outofmemoryerror.OutOfMemoryGCLimitExceed</argument>
 | 
						|
                    </arguments>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                <artifactId>maven-javadoc-plugin</artifactId>
 | 
						|
                <version>${maven-javadoc-plugin.version}</version>
 | 
						|
                <configuration>
 | 
						|
                    <source>${maven.compiler.source}</source>
 | 
						|
                    <target>${maven.compiler.target}</target>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
            
 | 
						|
            <plugin>
 | 
						|
                <!-- Build an executable JAR -->
 | 
						|
                <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                <artifactId>maven-jar-plugin</artifactId>
 | 
						|
                <version>${maven-jar-plugin.version}</version>
 | 
						|
                <configuration>
 | 
						|
                    <archive>
 | 
						|
                        <manifest>
 | 
						|
                            <addClasspath>true</addClasspath>
 | 
						|
                            <mainClass>com.baeldung.resource.MyResourceLoader</mainClass>
 | 
						|
                        </manifest>
 | 
						|
                    </archive>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <profiles>
 | 
						|
        <profile>
 | 
						|
            <id>integration</id>
 | 
						|
            <build>
 | 
						|
                <plugins>
 | 
						|
                    <plugin>
 | 
						|
                        <groupId>org.codehaus.mojo</groupId>
 | 
						|
                        <artifactId>exec-maven-plugin</artifactId>
 | 
						|
 | 
						|
                        <executions>
 | 
						|
                            <execution>
 | 
						|
                                <id>run-benchmarks</id>
 | 
						|
                                <!-- <phase>integration-test</phase> -->
 | 
						|
                                <phase>none</phase>
 | 
						|
                                <goals>
 | 
						|
                                    <goal>exec</goal>
 | 
						|
                                </goals>
 | 
						|
                                <configuration>
 | 
						|
                                    <classpathScope>test</classpathScope>
 | 
						|
                                    <executable>java</executable>
 | 
						|
                                    <arguments>
 | 
						|
                                        <argument>-classpath</argument>
 | 
						|
                                        <classpath />
 | 
						|
                                        <argument>org.openjdk.jmh.Main</argument>
 | 
						|
                                        <argument>.*</argument>
 | 
						|
                                    </arguments>
 | 
						|
                                </configuration>
 | 
						|
                            </execution>
 | 
						|
                        </executions>
 | 
						|
                    </plugin>
 | 
						|
                </plugins>
 | 
						|
            </build>
 | 
						|
        </profile>
 | 
						|
    </profiles>
 | 
						|
 | 
						|
    <properties>
 | 
						|
 | 
						|
        <!-- testing -->
 | 
						|
        <assertj.version>3.6.1</assertj.version>
 | 
						|
 | 
						|
        <!-- maven plugins -->
 | 
						|
        <maven-javadoc-plugin.version>3.0.0-M1</maven-javadoc-plugin.version>
 | 
						|
        <hsqldb.version>2.4.0</hsqldb.version>
 | 
						|
        <!-- Mime Type Libraries -->
 | 
						|
        <maven-jar-plugin.version>3.1.0</maven-jar-plugin.version>
 | 
						|
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project>
 |