Java教程

Kettle-8.2.0.0.342全源码通过版本

本文主要是介绍Kettle-8.2.0.0.342全源码通过版本,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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了,所以此源码即可使用。

        

 

这篇关于Kettle-8.2.0.0.342全源码通过版本的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!