scouter-weaver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.scouter-project</groupId>
<artifactId>scouter-weaver</artifactId>
<version>2.20.1</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/xsd/maven-4.0.0.xsd">
<parent>
<groupId>io.github.scouter-project</groupId>
<artifactId>scouter-parent</artifactId>
<version>2.20.1</version> <!--scouter-->
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.scouter-project</groupId>
<artifactId>scouter-weaver</artifactId>
<packaging>jar</packaging>
<name>scouter.weaver</name>
<properties>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
<build.datetime>${maven.build.timestamp} GMT</build.datetime>
<scouter.assembly.working.dir>${project.build.directory}/assembly-working</scouter.assembly.working.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<scouter.weaver.jarName>scouter.weaver</scouter.weaver.jarName>
</properties>
<dependencies>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
</plugins>
</build>
</project>