Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.43 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.   <modelVersion>4.0.0</modelVersion>
  6.  
  7.   <groupId>bytecode.dymov</groupId>
  8.   <artifactId>lab7</artifactId>
  9.   <version>1.0-SNAPSHOT</version>
  10.   <dependencies>
  11.     <!-- https://mvnrepository.com/artifact/javassist/javassist -->
  12.     <dependency>
  13.       <groupId>javassist</groupId>
  14.       <artifactId>javassist</artifactId>
  15.       <version>3.12.0.GA</version>
  16.     </dependency>
  17.  
  18.   </dependencies>
  19.  
  20. <build>
  21.     <plugins>
  22.         <plugin>
  23.             <groupId>org.apache.maven.plugins</groupId>
  24.             <artifactId>maven-compiler-plugin</artifactId>
  25.             <configuration>
  26.                 <source>13</source>
  27.                 <target>13</target>
  28.             </configuration>
  29.         </plugin>
  30.       <plugin>
  31.         <groupId>org.apache.maven.plugins</groupId>
  32.         <artifactId>maven-jar-plugin</artifactId>
  33.         <configuration>
  34.           <finalName>Agent</finalName>
  35.           <archive>
  36.             <manifestEntries>
  37.               <Premain-Class>program.Main</Premain-Class>
  38.               <Boot-Class-Path>javassist.jar</Boot-Class-Path>
  39.             </manifestEntries>
  40.           </archive>
  41.         </configuration>
  42.       </plugin>
  43.     </plugins>
  44. </build>
  45. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement