ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

Kettle-8.2.0.0.342全源码通过版本

2021-11-23 17:02:48  阅读:461  来源: 互联网

标签:8.2 0.0 kettle 源码 pentaho com mvn


pentaho-kettle-8.2.0.0-342源码: pentaho-kettle-8.2.0.0-342 的源码,自己调整或者即将调整的 - Gitee.comhttps://gitee.com/king_software/pentaho-kettle-8.2.0.0-342/tree/dev/        如上所示地址是编译并运行通过的8.2.0.0-342版本的全源码,其中origin-2021-11-23分支是编译通过最原始的一个分支,为只读分支。

        

        在idea中调整mvn的下载地址,切换为kettle对应的xml,这样才能下载jar包,否则很多jar包无法下载到。

         settings-kettle.xml

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  
  
  <localRepository>D:/fable/fable_dssg_mvn</localRepository>

  <!-- This is the recommended settings.xml for development of Hitachi Vantara projects. -->

  <!--
  If your wish to mirror everything through pentaho-public's repo uncomment bellow. Not recommended
  for external developers.
  -->
  <!--
  <mirrors>
    <mirror>
      <id>pentaho-public</id>
      <url>https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn/</url>
      <mirrorOf>*</mirrorOf>
    </mirror>
  </mirrors>
  -->

  <!--
  Don't forget to add setting-security.xml so that the password get's decrypted  
  -->
  <servers>
    <server>
      <id>pentaho-public</id>
      <username>devreaduser</username>
      <password>{zIMyJWfHKfoHiBJAVsAgW4E5BcJzR+nhTtgPy0J+/rs=}</password>
    </server>
  </servers>

  <!--
  You might want to tweak the 'updatePolicy' configuration to fit your need on having updated snapshots and
  releases. Our recommendation is to set it to 'never' and run maven with the '-U' flag when needed.
  -->
  <profiles>
    <profile>
      <id>pentaho</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <repositories>
        <repository>
          <id>pentaho-public</id>
          <name>Pentaho Public</name>
          <url>https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn/</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </snapshots>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>pentaho-public</id>
          <name>Pentaho Public</name>
          <url>https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn/</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>

  <!-- this lets you call plugins from these groups in their short form -->
  <pluginGroups>
    <pluginGroup>org.pentaho.maven.plugins</pluginGroup>
    <pluginGroup>com.pentaho.maven.plugins</pluginGroup>
    <pluginGroup>com.github.spotbugs</pluginGroup>
  </pluginGroups>
</settings>

        其中下面的本地仓库地址自己修改为自己的,

<localRepository>D:/fable/fable_dssg_mvn</localRepository>

        对应如下博客的源码,只不过下面博客中只将core,engine,dialog,ui等模块编译通过,使能展示图形化界面,但是spoon中很多扩展工具是通过plugins模块展示的。

运行kettle-8.2源码_lw18751836671的专栏-CSDN博客目录一、下载源码二、导入工程修改pom.xml三、运行四、界面交换一、下载源码地址:https://github.com/pentaho/pentaho-kettle我下载的是8.2这个源码,如下图所示,下载下来后应该是个zip文件,解压成目录即可。二、导入工程这里我使用的是idea导入kettle源码,eclipse我试了下,也大同小异。idea的话,选择到如下目录即可。工程导入后就如下图这样此时工程还无法运行,有几个重要...https://blog.csdn.net/lw18751836671/article/details/119600385?spm=1001.2014.3001.5501

        如下所示,如果要用到Json节点,xml节点等,那么就需要编译通过plugins了,所以此源码即可使用。

        

 

标签:8.2,0.0,kettle,源码,pentaho,com,mvn
来源: https://blog.csdn.net/lw18751836671/article/details/121497176

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有