123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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>io.github.minliuhua</groupId>
- <artifactId>warm-flow</artifactId>
- <version>${revision}</version>
- <packaging>pom</packaging>
- <name>warm-flow</name>
- <description>Warm-Flow is a flow</description>
- <url>https://github.com/minliuhua/monkey-flow</url>
- <issueManagement>
- <system>Github Issue</system>
- <url>https://github.com/minliuhua/warm-flow/issues</url>
- </issueManagement>
- <licenses>
- <license>
- <name>The Apache Software License, Version 2.0</name>
- <url>http://apache.org/licenses/LICENSE-2.0.txt</url>
- </license>
- </licenses>
- <scm>
- <connection>https://github.com/minliuhua/warm-flow.git</connection>
- <url>https://github.com/minliuhua/warm-flow</url>
- </scm>
- <developers>
- <developer>
- <name>stupidkid</name>
- <email>290631660@qq.com</email>
- <roles>
- <role>Developer</role>
- </roles>
- <timezone>+8</timezone>
- </developer>
- </developers>
- <modules>
- <module>warm-flow-core</module>
- <module>warm-flow-mybatis</module>
- <module>warm-flow-mybatis-plus</module>
- <module>warm-flow-jpa</module>
- <module>warm-flow-test</module>
- </modules>
- <properties>
- <revision>1.2.0-SNAPSHOT</revision>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <java.version>1.8</java.version>
- <spring.boot.version>2.5.14</spring.boot.version>
- <dom4j.version>2.1.1</dom4j.version>
- <mybatis.version>3.5.13</mybatis.version>
- <mybatis-spring-boot>2.3.0</mybatis-spring-boot>
- <mybatis-plus.version>3.5.1</mybatis-plus.version>
- <flatten-maven-plugin.version>1.3.0</flatten-maven-plugin.version>
- <mysql.version>8.0.33</mysql.version>
- <HikariCP.version>4.0.3</HikariCP.version>
- <junit.version>4.13.2</junit.version>
- <solon.version>2.5.3</solon.version>
- <snack3.version>3.2.88</snack3.version>
- <slf4j-api.version>1.7.36</slf4j-api.version>
- <oracle.version>11.2.0.4</oracle.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <!-- SpringBoot的依赖配置-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring.boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>org.noear</groupId>
- <artifactId>solon</artifactId>
- <version>${solon.version}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.dom4j</groupId>
- <artifactId>dom4j</artifactId>
- <version>${dom4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis</artifactId>
- <version>${mybatis.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>${mybatis-spring-boot}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <dependency>
- <groupId>org.noear</groupId>
- <artifactId>mybatis-solon-plugin</artifactId>
- <version>${solon.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <dependency>
- <groupId>org.noear</groupId>
- <artifactId>mybatis-plus-solon-plugin</artifactId>
- <version>${solon.version}</version>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-core</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-mybatis-core</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-mybatis-sb-starter</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-mybatis-solon-plugin</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-mybatis-plus-core</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-mybatis-plus-sb-starter</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-mybatis-plus-solon-plugin</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-jpa-core</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-jpa-sb-starter</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>io.github.minliuhua</groupId>
- <artifactId>warm-flow-jpa-jakarta-core</artifactId>
- <version>${revision}</version>
- </dependency>
- <!--for test-->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${junit.version}</version>
- </dependency>
- <dependency>
- <groupId>com.mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- <version>${mysql.version}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.zaxxer</groupId>
- <artifactId>HikariCP</artifactId>
- <version>${HikariCP.version}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.noear</groupId>
- <artifactId>snack3</artifactId>
- <version>${snack3.version}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>${slf4j-api.version}</version>
- </dependency>
- <dependency>
- <groupId>com.oracle.database.jdbc</groupId>
- <artifactId>ojdbc6</artifactId>
- <version>${oracle.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- <encoding>${project.build.sourceEncoding}</encoding>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.2.0</version>
- <configuration>
- <archive>
- <manifestEntries>
- <Implementation-Version>${revision}</Implementation-Version>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- <!-- 统一版本号管理 -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>flatten-maven-plugin</artifactId>
- <version>${flatten-maven-plugin.version}</version>
- <configuration>
- <updatePomFile>true</updatePomFile>
- <flattenMode>resolveCiFriendliesOnly</flattenMode>
- </configuration>
- <executions>
- <execution>
- <id>flatten</id>
- <phase>process-resources</phase>
- <goals>
- <goal>flatten</goal>
- </goals>
- </execution>
- <execution>
- <id>flatten.clean</id>
- <phase>clean</phase>
- <goals>
- <goal>clean</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>release</id>
- <build>
- <!-- mvn clean deploy -P release -->
- <!-- mvn clean install -Dmaven.test.skip=true -->
- <!-- source ~/.bash_profile -->
- <plugins>
- <!-- Source -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.2.1</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <!-- Javadoc -->
- </plugins>
- </build>
- </profile>
- </profiles>
- <distributionManagement>
- <snapshotRepository>
- <id>ossrh</id>
- <name>snapshots</name>
- <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
- </snapshotRepository>
- <repository>
- <id>ossrh</id>
- <name>releases</name>
- <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
- </repository>
- </distributionManagement>
- </project>
|