工具系列-maven把本地jar包打入本地仓库

把kettle-core-9.0.0.0-SNAPSHOT.jar打入本地仓库

mvn install:install-file -DgroupId=org.pentaho.di -DartifactId=pdi -Dversion=9.0.0.0-SNAPSHOT -Dfile=D:\work\workspace\git\pentaho-kettle\core\target\kettle-core-9.0.0.0-SNAPSHOT.jar -Dpackaging=jar

把kettle-dbdialog-9.0.0.0-SNAPSHOT.jar打入本地仓库

mvn install:install-file -DgroupId=pentaho-kettle -DartifactId=kettle-dbdialog -Dversion=9.0.0.0-SNAPSHOT -Dfile=D:\work\workspace\git\pentaho-kettle\dbdialog\target\kettle-dbdialog-9.0.0.0-SNAPSHOT.jar -Dpackaging=jar

把kettle-engine-9.0.0.0-SNAPSHOT.jar打入本地仓库

  mvn install:install-file -DgroupId=pentaho-kettle -DartifactId=kettle-engine -Dversion=9.0.0.0-SNAPSHOT -Dfile=D:\work\workspace\git\pentaho-kettle\engine\target\kettle-engine-9.0.0.0-SNAPSHOT.jar -Dpackaging=jar

把kettle-ui-swt-9.0.0.0-SNAPSHOT.jar打入本地仓库

mvn install:install-file -DgroupId=pentaho-kettle -DartifactId=kettle-ui-swt -Dversion=9.0.0.0-SNAPSHOT -Dfile=D:\work\workspace\git\pentaho-kettle\ui\target\kettle-ui-swt-9.0.0.0-SNAPSHOT.jar -Dpackaging=jar

把pdi-xml-plugin-core-9.0.0.0-SNAPSHOT.jar打入本地仓库

mvn install:install-file -DgroupId=org.pentaho.di.plugins -DartifactId=pdi-xml-plugin-core -Dversion=9.0.0.0-SNAPSHOT -Dfile=D:\work\workspace\git\pentaho-kettle\plugins\xml\core\target\pdi-xml-plugin-core-9.0.0.0-SNAPSHOT.jar -Dpackaging=jar

猜你喜欢

转载自blog.csdn.net/qq122716072/article/details/84847883