agent-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.bithon.agent</groupId>
<artifactId>agent-core</artifactId>
<version>1.1.0-RELEASE</version>
</dependency><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>org.bithon.agent</groupId>
<artifactId>agent</artifactId>
<version>1.1.0-RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>agent-core</artifactId>
<dependencies>
<!-- 3rd Dependency -->
<dependency>
<groupId>org.bithon.shaded</groupId>
<artifactId>shaded-slf4j</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bithon.shaded</groupId>
<artifactId>shaded-log4j</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bithon.shaded</groupId>
<artifactId>shaded-bytebuddy</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bithon.shaded</groupId>
<artifactId>shaded-jackson</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- provided by target application -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<!-- BigQueue -->
<dependency>
<groupId>org.bithon.shaded</groupId>
<artifactId>shaded-bigqueue</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bithon.shaded</groupId>
<artifactId>shaded-kryo</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bithon.agent</groupId>
<artifactId>agent-bootstrap</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<sourceDirectory>src/main/java</sourceDirectory>
<!-- 打包版本号 -->
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>bn1</id>
<goals>
<!-- create ${buildNumber} replacement -->
<goal>create</goal>
</goals>
</execution>
<execution>
<id>bn2</id>
<goals>
<!-- create ${buildtimestamp} replacement-->
<goal>create-timestamp</goal>
</goals>
<configuration>
<timestampPropertyName>buildtimestamp</timestampPropertyName>
<timestampFormat>yyyy-MM-dd HH:mm:ss</timestampFormat>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>filtering-java-templates</id>
<goals>
<goal>filter-sources</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>