1 Star 0 Fork 18

panqd/datasophon

forked from datasophon/datasophon 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 13.19 KB
一键复制 编辑 原始数据 按行查看 历史
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.datasophon</groupId>
<artifactId>datasophon</artifactId>
<version>1.1.1</version>
<packaging>pom</packaging>
<description>It is committed to rapidly implementing the deployment, management, monitoring and automatic operation
and maintenance of the big data cloud native platform, helping you quickly build a stable, efficient, elastic
and scalable big data cloud native platform.</description>
<modules>
<module>datasophon-api</module>
<module>datasophon-dao</module>
<module>datasophon-common</module>
<module>datasophon-worker</module>
<module>datasophon-ui</module>
</modules>
<properties>
<akka.version>2.4.20</akka.version>
<commons.httpclient>3.0.1</commons.httpclient>
<commons.lang>2.6</commons.lang>
<druid.version>1.1.14</druid.version>
<fastjson.version>1.2.83</fastjson.version>
<hutool.version>5.8.9</hutool.version>
<jackson.version>2.9.10</jackson.version>
<java.version>1.8</java.version>
<junit.version>4.12</junit.version>
<logback.version>1.2.3</logback.version>
<maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
<maven-compiler-plugin.version>3.10.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
<mybatis-plus.version>3.2.0</mybatis-plus.version>
<mybatis.spring.version>2.0.1</mybatis.spring.version>
<mysql.connector.version>5.1.34</mysql.connector.version>
<org.apache.sshd.version>2.9.2</org.apache.sshd.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spotless.ratchetFrom>origin/dev</spotless.ratchetFrom>
<spotless.version>2.27.1</spotless.version>
<spring.boot.version>2.1.18.RELEASE</spring.boot.version>
<spring.version>5.1.19.RELEASE</spring.version>
<spotless.version>2.27.2</spotless.version>
<versions-maven-plugin.version>2.14.2</versions-maven-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.connector.version}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>${druid.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons.lang}</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>${commons.httpclient}</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.11</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-remote_2.11</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-slf4j_2.11</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-persistence_2.11</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-core</artifactId>
<version>${org.apache.sshd.version}</version>
</dependency>
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-sftp</artifactId>
<version>${org.apache.sshd.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.2</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<goals>
<goal>jar-no-fork</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
<!-- <plugin>-->
<!-- <groupId>com.diffplug.spotless</groupId>-->
<!-- <artifactId>spotless-maven-plugin</artifactId>-->
<!-- <version>${spotless.version}</version>-->
<!-- <configuration>-->
<!-- <java>-->
<!-- <eclipse>-->
<!-- <file>style/spotless_datasophon_formatter.xml</file>-->
<!-- </eclipse>-->
<!-- <removeUnusedImports />-->
<!-- <importOrder>-->
<!-- <file>style/eclipse.importorder</file>-->
<!-- </importOrder>-->
<!-- </java>-->
<!-- <pom>-->
<!-- <sortPom>-->
<!-- <encoding>UTF-8</encoding>-->
<!-- <nrOfIndentSpace>4</nrOfIndentSpace>-->
<!-- <keepBlankLines>true</keepBlankLines>-->
<!-- <indentBlankLines>false</indentBlankLines>-->
<!-- <indentSchemaLocation>true</indentSchemaLocation>-->
<!-- <spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>-->
<!-- <sortModules>false</sortModules>-->
<!-- <sortExecutions>false</sortExecutions>-->
<!-- <predefinedSortOrder>custom_1</predefinedSortOrder>-->
<!-- <expandEmptyElements>false</expandEmptyElements>-->
<!-- <sortProperties>false</sortProperties>-->
<!-- </sortPom>-->
<!-- <replace>-->
<!-- <name>Leading blank line</name>-->
<!-- <search>project</search>-->
<!-- <replacement>project</replacement>-->
<!-- </replace>-->
<!-- </pom>-->
<!-- <markdown>-->
<!-- <includes>-->
<!-- <include>docs/**/*.md</include>-->
<!-- </includes>-->
<!-- <excludes>-->
<!-- <exclude>**/.github/**/*.md</exclude>-->
<!-- </excludes>-->
<!-- <flexmark />-->
<!-- </markdown>-->
<!-- </configuration>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <goals>-->
<!-- <goal>check</goal>-->
<!-- </goals>-->
<!-- <phase>compile</phase>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${versions-maven-plugin.version}</version>
</plugin>
</plugins>
</build>
<url>https://datasophon.github.io/datasophon-website/</url>
<inceptionYear>2022</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>git@github.com:datasophon/datasophon.git</connection>
<url>https://github.com/datasophon/datasophon</url>
</scm>
<profiles>
<profile>
<id>google-mirror</id>
<properties>
<mavenCentralId>gcs-maven-central-mirror</mavenCentralId>
<mavenCentralName>GCS Maven Central mirror</mavenCentralName>
<mavenCentralUrl>https://maven-central.storage-download.googleapis.com/maven2</mavenCentralUrl>
</properties>
</profile>
</profiles>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/panqd/datasophon.git
git@gitee.com:panqd/datasophon.git
panqd
datasophon
datasophon
dev

搜索帮助