1 Star 0 Fork 3

duxingdong/KettleEasyExpand

forked from 马进举/KettleEasyExpand 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 7.86 KB
一键复制 编辑 原始数据 按行查看 历史
马进举 提交于 2022-12-29 21:16 . 注释掉osgi相关功能
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-sdk-plugin-parent</artifactId>
<version>8.3.0.0-SNAPSHOT</version>
</parent>
<groupId>cn.benma666</groupId>
<artifactId>KettleEasyExpand</artifactId>
<packaging>jar</packaging>
<version>0.2.0</version>
<description>一个简化kettle插件开发的通用插件,采用JSON作为参数配置,省去ui调试设计步骤,只需一个类就可以开发一个插件。</description>
<name>KettleEasyExpand</name>
<url>http://www.benma666.cn</url>
<organization>
<url>www.benma666.cn</url>
<name>benma666</name>
</organization>
<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE Version 2, June 1991</name>
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
<distribution>actable</distribution>
</license>
</licenses>
<developers>
<developer>
<name>majinju</name>
<email>[email protected]</email>
<organization>benma666</organization>
<url>https://gitee.com/majinju/KettleEasyExpand</url>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:majinju/KettleEasyExpand.git</connection>
<developerConnection>scm:git:[email protected]:majinju/KettleEasyExpand.git</developerConnection>
<url>https://gitee.com/majinju/KettleEasyExpand</url>
<tag>0.2.0</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<!-- 这个id需要在setting.xml中设置 -->
<id>snapshots</id>
<name>OSS Snapshots Repository</name>
<!-- 这里的url就是Issue中回复的snapshots 的repo地址-->
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>snapshots</id>
<name>OSS Staging Repository</name>
<!-- 这里的url就是Issue中回复的staging 的repo地址-->
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<!-- 主要依赖库的版本定义 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>1.8</jdk.version>
<myutils.vsersion>0.2.0</myutils.vsersion>
<junit.version>4.11</junit.version>
<kettle.version>8.3.0.0-SNAPSHOT</kettle.version>
<spring-boot.version>2.6.2</spring-boot.version>
<maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version>
</properties>
<dependencies>
<!-- kettle start-->
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-core</artifactId>
<version>${kettle.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-engine</artifactId>
<version>${kettle.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>commons-lang</artifactId>
<groupId>commons-lang</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-ui-swt</artifactId>
<version>${kettle.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.swt</groupId>
<artifactId>org.eclipse.swt.win32.win32.x86_64</artifactId>
<version>4.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-dbdialog</artifactId>
<version>${kettle.version}</version>
<scope>provided</scope>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.pentaho.di.plugins</groupId>-->
<!-- <artifactId>excel-plugins-impl</artifactId>-->
<!-- <version>${kettle.version}</version>-->
<!-- <scope>provided</scope>-->
<!-- </dependency>-->
<!-- kettle end-->
</dependencies>
<build>
<finalName>KettleEasyExpand</finalName>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
<testSourceDirectory>${basedir}/src/test/java</testSourceDirectory>
<outputDirectory>${basedir}/target/classes</outputDirectory>
<testOutputDirectory>${basedir}/target/classes</testOutputDirectory>
<plugins>
<!-- compiler插件, 设定JDK版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<showWarnings>true</showWarnings>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- clean插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>distro-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
<!-- JavaDoc -->
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-javadoc-plugin</artifactId>-->
<!-- <version>2.9.1</version>-->
<!-- <configuration>-->
<!-- <charset>UTF-8</charset>-->
<!-- <encoding>UTF-8</encoding>-->
<!-- </configuration>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>attach-javadocs</id>-->
<!-- <phase>package</phase>-->
<!-- <goals>-->
<!-- <goal>jar</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- GPG -->
<!-- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin> -->
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/duxingdong/KettleEasyExpand.git
[email protected]:duxingdong/KettleEasyExpand.git
duxingdong
KettleEasyExpand
KettleEasyExpand
master

搜索帮助