You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by GitBox <gi...@apache.org> on 2019/05/28 02:02:14 UTC

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

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:
users@infra.apache.org


With regards,
Apache Git Services