scouter-agent-host
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.scouter-project</groupId>
<artifactId>scouter-agent-host</artifactId>
<version>2.20.0</version>
</dependency><?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/maven-v4_0_0.xsd">
<parent>
<artifactId>scouter-parent</artifactId>
<groupId>io.github.scouter-project</groupId>
<version>2.20.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scouter-agent-host</artifactId>
<name>scouter.agent.host</name>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<compilerVersion>1.8</compilerVersion>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<excludes>
<exclude />
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>true</createDependencyReducedPom>
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
<filters>
<filter>
<artifact>io.github.scouter-project:scouter-common</artifact>
<excludes>
<exclude>scouter/v.properties</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>make-boot-jar</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<jar>
<fileset>
<include />
</fileset>
<fileset>
<include />
</fileset>
<fileset>
<include />
</fileset>
</jar>
</target>
</configuration>
</execution>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<mkdir />
<copy>
<fileset>
<include />
</fileset>
</copy>
<fixcrlf />
<tar>
<tarfileset>
<include />
</tarfileset>
<tarfileset>
<exclude />
</tarfileset>
<tarfileset>
<include />
</tarfileset>
<tarfileset>
<include />
</tarfileset>
</tar>
<mkdir />
<copy />
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<scouter.assembly.working.dir>${project.build.directory}/assembly-working</scouter.assembly.working.dir>
<scouter.host.boot.jar>scouter.host.jar</scouter.host.boot.jar>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<build.datetime>${maven.build.timestamp} GMT</build.datetime>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
</properties>
</project>