Skip to content

Commit

Permalink
[#noissue] Cleanup maven
Browse files Browse the repository at this point in the history
  • Loading branch information
emeroad committed Mar 21, 2024
1 parent b3be5cd commit 37433b7
Show file tree
Hide file tree
Showing 10 changed files with 66 additions and 4 deletions.
4 changes: 2 additions & 2 deletions agent-module/agent/src/assembly/component/core.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<exclude>com.navercorp.pinpoint:pinpoint-bootstrap-java16</exclude>
<exclude>com.navercorp.pinpoint:pinpoint-profiler-test</exclude>
<exclude>com.navercorp.pinpoint:pinpoint-plugins-assembly</exclude>
<exclude>com.navercorp.pinpoint:pinpoint-tools</exclude>
<exclude>com.navercorp.pinpoint:pinpoint-agent-tools</exclude>
<!-- <exclude>*:pom</exclude>-->
</excludes>
<outputDirectory>lib</outputDirectory>
Expand Down Expand Up @@ -96,7 +96,7 @@
</dependencySet>
<dependencySet>
<includes>
<include>com.navercorp.pinpoint:pinpoint-tools</include>
<include>com.navercorp.pinpoint:pinpoint-agent-tools</include>
</includes>
<outputDirectory>tools</outputDirectory>
</dependencySet>
Expand Down
8 changes: 8 additions & 0 deletions agent-module/plugins/jboss/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,14 @@
<include>com.navercorp.pinpoint:pinpoint-common-servlet</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>com.navercorp.pinpoint:pinpoint-common-servlet</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>com.navercorp.pinpoint.plugin.common.servlet</pattern>
Expand Down
8 changes: 8 additions & 0 deletions agent-module/plugins/jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,14 @@
<include>com.navercorp.pinpoint:pinpoint-common-servlet</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>com.navercorp.pinpoint:pinpoint-common-servlet</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>com.navercorp.pinpoint.plugin.common.servlet</pattern>
Expand Down
8 changes: 8 additions & 0 deletions agent-module/plugins/resin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,14 @@
<include>com.navercorp.pinpoint:pinpoint-common-servlet</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>com.navercorp.pinpoint:pinpoint-common-servlet</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>com.navercorp.pinpoint.plugin.common.servlet</pattern>
Expand Down
6 changes: 6 additions & 0 deletions agent-module/plugins/tomcat/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@
</includes>
</artifactSet>
<filters>
<filter>
<artifact>com.navercorp.pinpoint:pinpoint-common-servlet</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
<filter>
<artifact>com.navercorp.pinpoint:pinpoint-jboss-plugin</artifact>
<includes>
Expand Down
8 changes: 8 additions & 0 deletions agent-module/plugins/undertow-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@
<include>com.navercorp.pinpoint:pinpoint-common-servlet</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>com.navercorp.pinpoint:pinpoint-common-servlet</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>com.navercorp.pinpoint.plugin.common.servlet</pattern>
Expand Down
8 changes: 8 additions & 0 deletions agent-module/plugins/undertow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@
<include>com.navercorp.pinpoint:pinpoint-common-servlet</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>com.navercorp.pinpoint:pinpoint-common-servlet</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>com.navercorp.pinpoint.plugin.common.servlet</pattern>
Expand Down
8 changes: 8 additions & 0 deletions agent-module/plugins/weblogic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,14 @@
<include>com.navercorp.pinpoint:pinpoint-common-servlet</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>com.navercorp.pinpoint:pinpoint-common-servlet</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>com.navercorp.pinpoint.plugin.common.servlet</pattern>
Expand Down
8 changes: 8 additions & 0 deletions agent-module/plugins/websphere/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,14 @@
<include>com.navercorp.pinpoint:pinpoint-common-servlet</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>com.navercorp.pinpoint:pinpoint-common-servlet</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>com.navercorp.pinpoint.plugin.common.servlet</pattern>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
<maven.compiler.target>${jdk.version}</maven.compiler.target>
<maven.compiler.compilerVersion>${jdk.version}</maven.compiler.compilerVersion>
<jdk.home>${env.JAVA_8_HOME}</jdk.home>
<maven.compiler.executable>${jdk.home}/bin/javac</maven.compiler.executable>
<test.jdk.home>${jdk.home}</test.jdk.home>

<docker.repository.name>pinpointdocker</docker.repository.name>
Expand Down Expand Up @@ -1696,11 +1697,10 @@
<configuration>
<fork>true</fork>
<debug>true</debug>
<verbose>true</verbose>
<verbose>false</verbose>
<parameters>true</parameters>
<showDeprecation>true</showDeprecation>
<detail>true</detail>
<executable>${jdk.home}/bin/javac</executable>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 37433b7

Please sign in to comment.