[GitHub] [carbondata] lamber-ken commented on issue #3217: [CARBONDATA-3383] fix thrift version conflict bug in examples module

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[GitHub] [carbondata] lamber-ken commented on issue #3217: [CARBONDATA-3383] fix thrift version conflict bug in examples module

GitBox
lamber-ken commented on issue #3217: [CARBONDATA-3383] fix thrift version conflict bug in examples module
URL: https://github.com/apache/carbondata/pull/3217#issuecomment-496337985
 
 
   I think the maven dependencies of CarbonData project need to reorganize, some place use version directly, some place miss version. It may cause version conflict, not only thrift version. So it's need to open a new big issue to resolve this problem, this pr can't resolve it, so close this.
   
   for example, `processing/pom.xml`
   ```
   <dependency>
     <groupId>org.apache.carbondata</groupId>
     <artifactId>carbondata-core</artifactId>
     <version>${project.version}</version>
   </dependency>
   <dependency>
     <groupId>com.univocity</groupId>
     <artifactId>univocity-parsers</artifactId>
     <version>2.2.1</version>
   </dependency>
   ```
   `datamap/mv/plan/pom.xml`
   ```
   <plugin>
     <groupId>com.ning.maven.plugins</groupId>
     <artifactId>maven-duplicate-finder-plugin</artifactId>
     <configuration>
       <skip>true</skip>
     </configuration>
   </plugin>
   ```
   
   
   
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[hidden email]


With regards,
Apache Git Services