Skip to content

Commit

Permalink
[#11745] Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
emeroad committed Nov 20, 2024
1 parent 284194c commit 5598e76
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
13 changes: 0 additions & 13 deletions commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>filter-src</id>
<goals>
<goal>filter-sources</goal>
</goals>
<configuration>
<sourceDirectory>${basedir}/src/main/java-templates</sourceDirectory>
<outputDirectory>${project.build.directory}/generated-sources/java-templates</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
package com.navercorp.pinpoint.common;
public final class VersionTemplate {
final class VersionTemplate {
static final String VERSION_TEMPLATE = "${project.version}";

private VersionTemplate() {
}
}
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1769,6 +1769,23 @@
<artifactId>build-helper-maven-plugin</artifactId>
<version>${plugin.build-helper.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>filter-src</id>
<goals>
<goal>filter-sources</goal>
</goals>
<configuration>
<sourceDirectory>${basedir}/src/main/java-templates</sourceDirectory>
<outputDirectory>${project.build.directory}/generated-sources/java-templates</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
Expand Down

0 comments on commit 5598e76

Please sign in to comment.