Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove and translate chinese to english in collector,script,push,remoting and manager module #1774

Merged
merged 18 commits into from
Apr 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#1759 Update pom.xml
Signed-off-by: Manan Pujara <[email protected]>
  • Loading branch information
MananPoojara committed Apr 17, 2024
commit e43060c9fc173b40545f5b4ebb2ca19c4f38f410
42 changes: 21 additions & 21 deletions manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!--thymeleaf依赖-->
<!--thymeleaf-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- freemaker依赖 -->
<!-- freemarker -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
Expand Down Expand Up @@ -217,15 +217,15 @@
<configuration>
<classesDirectory>target/classes/</classesDirectory>
<archive>
<!--生成的jar包不包含maven描述相关文件-->
<!--Exclude maven descriptors from generated JAR-->
<addMavenDescriptor>false</addMavenDescriptor>
<manifest>
<!--项目启动类-->
<!--Main class of the project-->
<mainClass>org.apache.hertzbeat.manager.Manager</mainClass>
<useUniqueVersions>false</useUniqueVersions>
<!--第三方JAR加入类构建的路径maven-dependency-plugin-->
<!--Add third-party JARs to the classpath using maven-dependency-plugin-->
<addClasspath>true</addClasspath>
<!--外部依赖jar包的位置-->
<!--Location of external dependency JARs-->
<classpathPrefix>lib/</classpathPrefix>
</manifest>
<manifestEntries>
Expand All @@ -245,17 +245,17 @@
</activation>
<build>
<plugins>
<!--关键插件,maven提供的assembly插件,需要放在最后-->
<!--Critical plugin, assembly plugin provided by maven, should be placed last-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly-plugin.version}</version>
<executions>
<execution>
<id>make-zip</id>
<!--绑定的maven操作-->
<!--Bound maven operation-->
<phase>package</phase>
<!--运行一次-->
<!--Run once-->
<goals>
<goal>single</goal>
</goals>
Expand All @@ -281,9 +281,9 @@
<executions>
<execution>
<id>make-macos-arm64</id>
<!--绑定的maven操作-->
<!--Bound maven operation-->
<phase>package</phase>
<!--运行一次-->
<!--Run once-->
<goals>
<goal>single</goal>
</goals>
Expand All @@ -295,9 +295,9 @@
</execution>
<execution>
<id>make-macos-amd64</id>
<!--绑定的maven操作-->
<!--Bound maven operation-->
<phase>package</phase>
<!--运行一次-->
<!--Run once-->
<goals>
<goal>single</goal>
</goals>
Expand All @@ -309,9 +309,9 @@
</execution>
<execution>
<id>make-linux-arm64</id>
<!--绑定的maven操作-->
<!--Bound maven operation-->
<phase>package</phase>
<!--运行一次-->
<!--Run once-->
<goals>
<goal>single</goal>
</goals>
Expand All @@ -323,9 +323,9 @@
</execution>
<execution>
<id>make-linux-amd64</id>
<!--绑定的maven操作-->
<!--Bound maven operation-->
<phase>package</phase>
<!--运行一次-->
<!--Run once-->
<goals>
<goal>single</goal>
</goals>
Expand All @@ -337,9 +337,9 @@
</execution>
<execution>
<id>make-windows-64</id>
<!--绑定的maven操作-->
<!--Bound maven operation-->
<phase>package</phase>
<!--运行一次-->
<!--Run once-->
<goals>
<goal>single</goal>
</goals>
Expand All @@ -351,9 +351,9 @@
</execution>
<execution>
<id>make-docker-compose-script</id>
<!--绑定的maven操作-->
<!--Bound maven operation-->
<phase>package</phase>
<!--运行一次-->
<!--Run once-->
<goals>
<goal>single</goal>
</goals>
Expand Down