/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
core-java-modules/core-java-sun/pom.xml
92 строки
3 KB
Bipin kumar
JAVA-32170_C_11: Changes made for Fix formatting of POMs - C_11 (#16112)
16 мар 2024, 00:54
Не верифицирован
16 мар 2024, 00:54
8a2f421
Код
Авторство
О чём код?
<?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-sun</artifactId> <packaging>jar</packaging> <name>core-java-sun</name> <parent> <groupId>com.baeldung.core-java-modules</groupId> <artifactId>core-java-modules</artifactId> <version>0.0.1-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>${sun-tools.version}</version> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> </dependency> </dependencies> <build> <finalName>core-java-sun</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> <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> </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> <avaitility.version>1.7.0</avaitility.version> <sun-tools.version>1.8.0</sun-tools.version> </properties> </project>