pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>ce-datamonitorsystem</artifactId>
  7. <groupId>com.creditease.moniter</groupId>
  8. <version>1.0</version>
  9. <relativePath>../com.creditease.uav.superpom</relativePath>
  10. </parent>
  11. <artifactId>com.creditease.uav.ttl</artifactId>
  12. <version>2.1.0</version>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <jdk.version>1.6</jdk.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.javassist</groupId>
  20. <artifactId>javassist</artifactId>
  21. <version>3.16.1-GA</version>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <artifactId>maven-jar-plugin</artifactId>
  28. <executions>
  29. <execution>
  30. <id>agent</id>
  31. <goals>
  32. <goal>jar</goal>
  33. </goals>
  34. <phase>package</phase>
  35. <configuration>
  36. <archive>
  37. <manifest>
  38. <addClasspath>true</addClasspath>
  39. </manifest>
  40. <manifestEntries>
  41. <Premain-Class>
  42. com.alibaba.ttl.threadpool.agent.Iagent
  43. </Premain-Class>
  44. </manifestEntries>
  45. </archive>
  46. <classifier>agent</classifier>
  47. <!-- <includes> <include>**/com/creditease/uav/monitorframework/agent/**</include>
  48. </includes> -->
  49. </configuration>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>