luchunliang opened a new issue #3032:
URL: https://github.com/apache/incubator-inlong/issues/3032


   ### What happened
   
   lombok class miss getter&setter function in maven distribution repository.
   
   The file "pom.xml" miss lombok compiler plugin description in the project 
that include lombok class.
   
       <build>
           <plugins>
               <plugin>
                   <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-compiler-plugin</artifactId>
                   <configuration>
                       <encoding>${project.build.encoding}</encoding>
                       <source>${maven.compiler.source}</source>
                       <target>${maven.compiler.target}</target>
                       <showDeprecation>true</showDeprecation>
                       <showWarnings>true</showWarnings>
                       <compilerArgument>-Xlint:unchecked</compilerArgument>
                       <annotationProcessorPaths>
                           <path>
                               <groupId>org.projectlombok</groupId>
                               <artifactId>lombok</artifactId>
                               <version>${lombok.version}</version>
                           </path>
                       </annotationProcessorPaths>
                   </configuration>
                   <version>${plugin.compile.version}</version>
               </plugin>
           </plugins>
       </build>
   
   ### What you expected to happen
   
   lombok class have getter&setter function in maven distribution repository.
   
   ### How to reproduce
   
   lombok class have getter&setter function in maven distribution repository.
   
   ### Environment
   
   _No response_
   
   ### InLong version
   
   master
   
   ### InLong Component
   
   InLong Manager
   
   ### Are you willing to submit PR?
   
   - [X] Yes, I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to