172 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			172 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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-jvm</artifactId>
 | |
|     <packaging>jar</packaging>
 | |
|     <name>core-java-jvm</name>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung.core-java-modules</groupId>
 | |
|         <artifactId>core-java-modules</artifactId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-lang3</artifactId>
 | |
|             <version>${commons-lang3.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.javassist</groupId>
 | |
|             <artifactId>javassist</artifactId>
 | |
|             <version>${javaassist.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.owasp.esapi</groupId>
 | |
|             <artifactId>esapi</artifactId>
 | |
|             <version>${esapi.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.ow2.asm</groupId>
 | |
|             <artifactId>asm</artifactId>
 | |
|             <version>${asm.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.ow2.asm</groupId>
 | |
|             <artifactId>asm-util</artifactId>
 | |
|             <version>${asm.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.bcel</groupId>
 | |
|             <artifactId>bcel</artifactId>
 | |
|             <version>${bcel.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.openjdk.jol</groupId>
 | |
|             <artifactId>jol-core</artifactId>
 | |
|             <version>${jol-core.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <profiles>
 | |
|         <!-- java instrumentation profiles to build jars -->
 | |
|         <profile>
 | |
|             <id>buildAgentLoader</id>
 | |
|             <build>
 | |
|                 <plugins>
 | |
|                     <plugin>
 | |
|                         <groupId>org.apache.maven.plugins</groupId>
 | |
|                         <artifactId>maven-jar-plugin</artifactId>
 | |
|                         <executions>
 | |
|                             <execution>
 | |
|                                 <phase>package</phase>
 | |
|                                 <goals>
 | |
|                                     <goal>jar</goal>
 | |
|                                 </goals>
 | |
|                                 <configuration>
 | |
|                                     <classifier>agentLoader</classifier>
 | |
|                                     <classesDirectory>target/classes</classesDirectory>
 | |
|                                     <archive>
 | |
|                                         <manifest>
 | |
|                                             <addClasspath>true</addClasspath>
 | |
|                                             <mainClass>com.baeldung.instrumentation.application.Launcher</mainClass>
 | |
|                                         </manifest>
 | |
|                                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
 | |
|                                     </archive>
 | |
| 
 | |
|                                     <includes>
 | |
|                                         <include>com/baeldung/instrumentation/application/AgentLoader.class</include>
 | |
|                                         <include>com/baeldung/instrumentation/application/Launcher.class</include>
 | |
|                                     </includes>
 | |
|                                 </configuration>
 | |
|                             </execution>
 | |
|                         </executions>
 | |
|                     </plugin>
 | |
|                 </plugins>
 | |
|             </build>
 | |
|         </profile>
 | |
|         <profile>
 | |
|             <id>buildApplication</id>
 | |
|             <build>
 | |
|                 <plugins>
 | |
|                     <plugin>
 | |
|                         <groupId>org.apache.maven.plugins</groupId>
 | |
|                         <artifactId>maven-jar-plugin</artifactId>
 | |
|                         <executions>
 | |
|                             <execution>
 | |
|                                 <phase>package</phase>
 | |
|                                 <goals>
 | |
|                                     <goal>jar</goal>
 | |
|                                 </goals>
 | |
|                                 <configuration>
 | |
|                                     <classifier>application</classifier>
 | |
|                                     <classesDirectory>target/classes</classesDirectory>
 | |
|                                     <archive>
 | |
|                                         <manifest>
 | |
|                                             <addClasspath>true</addClasspath>
 | |
|                                             <mainClass>com.baeldung.instrumentation.application.Launcher</mainClass>
 | |
|                                         </manifest>
 | |
|                                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
 | |
|                                     </archive>
 | |
| 
 | |
|                                     <includes>
 | |
|                                         <include>com/baeldung/instrumentation/application/MyAtm.class</include>
 | |
|                                         <include>com/baeldung/instrumentation/application/MyAtmApplication.class</include>
 | |
|                                         <include>com/baeldung/instrumentation/application/Launcher.class</include>
 | |
|                                     </includes>
 | |
|                                 </configuration>
 | |
|                             </execution>
 | |
|                         </executions>
 | |
|                     </plugin>
 | |
|                 </plugins>
 | |
|             </build>
 | |
|         </profile>
 | |
|         <profile>
 | |
|             <id>buildAgent</id>
 | |
|             <build>
 | |
|                 <plugins>
 | |
|                     <plugin>
 | |
|                         <groupId>org.apache.maven.plugins</groupId>
 | |
|                         <artifactId>maven-jar-plugin</artifactId>
 | |
|                         <executions>
 | |
|                             <execution>
 | |
|                                 <phase>package</phase>
 | |
|                                 <goals>
 | |
|                                     <goal>jar</goal>
 | |
|                                 </goals>
 | |
|                                 <configuration>
 | |
|                                     <classifier>agent</classifier>
 | |
|                                     <classesDirectory>target/classes</classesDirectory>
 | |
|                                     <archive>
 | |
|                                         <manifest>
 | |
|                                             <addClasspath>true</addClasspath>
 | |
|                                             <mainClass>com.baeldung.instrumentation.application.Launcher</mainClass>
 | |
|                                         </manifest>
 | |
|                                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
 | |
|                                     </archive>
 | |
| 
 | |
|                                     <includes>
 | |
|                                         <include>com/baeldung/instrumentation/agent/AtmTransformer.class</include>
 | |
|                                         <include>com/baeldung/instrumentation/agent/MyInstrumentationAgent.class</include>
 | |
|                                     </includes>
 | |
|                                 </configuration>
 | |
|                             </execution>
 | |
|                         </executions>
 | |
|                     </plugin>
 | |
|                 </plugins>
 | |
|             </build>
 | |
|         </profile>
 | |
|     </profiles>
 | |
| 
 | |
|     <properties>
 | |
|         <javaassist.version>3.27.0-GA</javaassist.version>
 | |
|         <esapi.version>2.5.2.0</esapi.version>
 | |
|         <jol-core.version>0.10</jol-core.version>
 | |
|         <asm.version>9.4</asm.version>
 | |
|         <bcel.version>6.5.0</bcel.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |