pinpoint-bootstrap-java9-internal
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.navercorp.pinpoint</groupId> <artifactId>pinpoint-bootstrap-java9-internal</artifactId> <version>3.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2018 NAVER Corp. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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> <parent> <groupId>com.navercorp.pinpoint</groupId> <artifactId>pinpoint-bootstrap-parent</artifactId> <relativePath>../bootstrap-parent</relativePath> <version>3.0.3</version> </parent> <properties> <jdk.version>9</jdk.version> <jdk.home>${env.JAVA_11_HOME}</jdk.home> </properties> <artifactId>pinpoint-bootstrap-java9-internal</artifactId> <packaging>jar</packaging> <dependencies> <dependency> <groupId>com.navercorp.pinpoint</groupId> <artifactId>pinpoint-bootstrap-core</artifactId> </dependency> <dependency> <groupId>com.navercorp.pinpoint</groupId> <artifactId>pinpoint-commons</artifactId> </dependency> <!-- Logging dependencies --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-jcl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <phase>package</phase> </execution> </executions> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>pinpoint.bootstrap.java9_internal</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgs> <arg>--add-exports=java.base/jdk.internal.loader=ALL-UNNAMED</arg> <arg>--add-exports=java.base/jdk.internal.module=ALL-UNNAMED</arg> <arg>--add-exports=java.base/jdk.internal.misc=ALL-UNNAMED</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine> --add-exports java.base/jdk.internal.loader=ALL-UNNAMED --add-exports java.base/jdk.internal.module=ALL-UNNAMED --add-exports java.base/jdk.internal.misc=ALL-UNNAMED </argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <legacyMode>true</legacyMode> <additionalOptions> <additionalOption>--add-exports</additionalOption> <additionalOption>java.base/jdk.internal.loader=ALL-UNNAMED</additionalOption> <additionalOption>--add-exports</additionalOption> <additionalOption>java.base/jdk.internal.module=ALL-UNNAMED</additionalOption> <additionalOption>--add-exports</additionalOption> <additionalOption>java.base/jdk.internal.misc=ALL-UNNAMED</additionalOption> </additionalOptions> </configuration> </plugin> </plugins> </build> </project>