mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-09 04:46:06 +10:00
@@ -33,6 +33,12 @@
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- tools -->
|
||||
<dependency>
|
||||
<groupId>com.navercorp.pinpoint</groupId>
|
||||
<artifactId>pinpoint-tools</artifactId>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- for tests -->
|
||||
<dependency>
|
||||
|
||||
@@ -50,5 +50,11 @@
|
||||
<outputDirectory>plugin</outputDirectory>
|
||||
<unpack>true</unpack>
|
||||
</dependencySet>
|
||||
<dependencySet>
|
||||
<includes>
|
||||
<include>com.navercorp.pinpoint:pinpoint-tools</include>
|
||||
</includes>
|
||||
<outputDirectory>tools</outputDirectory>
|
||||
</dependencySet>
|
||||
</dependencySets>
|
||||
</assembly>
|
||||
@@ -1,4 +0,0 @@
|
||||
#! /bin/bash
|
||||
CL_PATH=`find ../ -name '*.jar' | tr "\n" :`
|
||||
echo "CLASSPATH=$CL_PATH"
|
||||
java -classpath $CL_PATH com.navercorp.pinpoint.profiler.tools.NetworkAvailabilityChecker ../pinpoint.config
|
||||
@@ -49,6 +49,7 @@
|
||||
<module>commons</module>
|
||||
<module>commons-hbase</module>
|
||||
<module>commons-server</module>
|
||||
<module>tools</module>
|
||||
<module>plugins</module>
|
||||
<module>profiler</module>
|
||||
<module>profiler-optional</module>
|
||||
@@ -180,6 +181,11 @@
|
||||
<type>zip</type>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.navercorp.pinpoint</groupId>
|
||||
<artifactId>pinpoint-tools</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.navercorp.pinpoint</groupId>
|
||||
<artifactId>pinpoint-test</artifactId>
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/target/
|
||||
/*.iml
|
||||
/.settings/
|
||||
/.classpath
|
||||
/.project
|
||||
@@ -0,0 +1 @@
|
||||
# pinpoint-tools
|
||||
@@ -0,0 +1,5 @@
|
||||
RMRqrdbgbKFhbaVnDxHUdDQvrOQXxIBklnvcmahheubVC
|
||||
mh2KM35CLkwUHS4DH7QVhxy52J5hnWbyEm6Cyd3KkF<mV
|
||||
RmmnSVOqOMnOnMMrmMqwXomoroNrqPNRrPSsWwtUxXuUU
|
||||
sRONqpnmqmUUnqonmstsmmmmmUUnqonmstsmmmmmUUGfk
|
||||
mlfkqUUnmmmm
|
||||
@@ -0,0 +1,27 @@
|
||||
<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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.navercorp.pinpoint</groupId>
|
||||
<artifactId>pom</artifactId>
|
||||
<version>1.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>pinpoint-tools</artifactId>
|
||||
<name>pinpoint-tools</name>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.navercorp.pinpoint</groupId>
|
||||
<artifactId>pinpoint-commons</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.navercorp.pinpoint</groupId>
|
||||
<artifactId>pinpoint-profiler</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
+1
-1
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.navercorp.pinpoint.profiler.tools;
|
||||
package com.navercorp.pinpoint.tools;
|
||||
|
||||
import com.navercorp.pinpoint.bootstrap.config.DefaultProfilerConfig;
|
||||
import com.navercorp.pinpoint.bootstrap.config.ProfilerConfig;
|
||||
+1
-1
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.navercorp.pinpoint.profiler.tools;
|
||||
package com.navercorp.pinpoint.tools;
|
||||
|
||||
/**
|
||||
* Marker interface to prevent obfuscation
|
||||
@@ -0,0 +1,4 @@
|
||||
#! /bin/bash
|
||||
CL_PATH=`find ../ -name '*.jar' | tr "\n" :`
|
||||
echo "CLASSPATH=$CL_PATH"
|
||||
java -classpath $CL_PATH com.navercorp.pinpoint.tools.NetworkAvailabilityChecker ../pinpoint.config
|
||||
Reference in New Issue
Block a user