1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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>
- <parent>
- <artifactId>ce-datamonitorsystem</artifactId>
- <groupId>com.creditease.moniter</groupId>
- <version>1.0</version>
- <relativePath>../com.creditease.uav.superpom</relativePath>
- </parent>
- <artifactId>com.creditease.uav.ttl</artifactId>
- <version>2.1.0</version>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <jdk.version>1.6</jdk.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.javassist</groupId>
- <artifactId>javassist</artifactId>
- <version>3.16.1-GA</version>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <id>agent</id>
- <goals>
- <goal>jar</goal>
- </goals>
- <phase>package</phase>
- <configuration>
- <archive>
- <manifest>
- <addClasspath>true</addClasspath>
- </manifest>
- <manifestEntries>
- <Premain-Class>
- com.alibaba.ttl.threadpool.agent.Iagent
- </Premain-Class>
- </manifestEntries>
- </archive>
- <classifier>agent</classifier>
- <!-- <includes> <include>**/com/creditease/uav/monitorframework/agent/**</include>
- </includes> -->
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
-
- </project>
|