2020-04-09 02:17:14 +00:00
|
|
|
<?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>com.flyfish.framework</groupId>
|
|
|
|
<artifactId>flyfish-framework</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2021-12-07 09:02:56 +00:00
|
|
|
<version>2.6.1</version>
|
2020-04-09 02:17:14 +00:00
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<docker.image.prefix>flyfish</docker.image.prefix>
|
|
|
|
<docker.plugin.version>0.27.2</docker.plugin.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<java.version>1.8</java.version>
|
2021-01-16 03:47:50 +00:00
|
|
|
<jasypt.version>3.0.3</jasypt.version>
|
2020-04-09 02:17:14 +00:00
|
|
|
<spring-cloud.version>Finchley.SR1</spring-cloud.version>
|
|
|
|
<jjwt.version>0.11.0</jjwt.version>
|
2021-12-07 09:02:56 +00:00
|
|
|
<reflection.version>0.10.2</reflection.version>
|
2020-04-09 02:17:14 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>wangyu</name>
|
|
|
|
<email>wybaby168@gmail.com</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<!--<module>wangyu-service</module>-->
|
|
|
|
<module>flyfish-data</module>
|
|
|
|
<module>flyfish-common</module>
|
|
|
|
<module>flyfish-web</module>
|
2021-01-05 07:34:48 +00:00
|
|
|
<module>flyfish-user</module>
|
2021-01-09 08:57:07 +00:00
|
|
|
<module>flyfish-file</module>
|
2021-01-12 09:43:18 +00:00
|
|
|
<module>flyfish-logging</module>
|
2021-03-21 15:50:12 +00:00
|
|
|
<module>flyfish-dict</module>
|
2021-03-25 15:32:10 +00:00
|
|
|
<module>flyfish-form</module>
|
2021-12-09 15:59:06 +00:00
|
|
|
<module>flyfish-approval</module>
|
2022-01-03 15:21:43 +00:00
|
|
|
<module>flyfish-backup</module>
|
2020-04-09 02:17:14 +00:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>central</id>
|
2022-01-18 08:17:09 +00:00
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
2020-04-09 02:17:14 +00:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>flyfish-releases</id>
|
|
|
|
<url>http://nexus.flyfish.group/repository/maven-releases/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>flyfish-snapshots</id>
|
|
|
|
<url>http://nexus.flyfish.group/repository/maven-snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>1.2.56</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
<version>4.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</dependency>
|
2021-01-04 06:44:03 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
<version>${reflection.version}</version>
|
|
|
|
</dependency>
|
2021-01-16 03:47:50 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
|
|
|
<version>${jasypt.version}</version>
|
|
|
|
</dependency>
|
2020-04-09 02:17:14 +00:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-01-04 06:44:03 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
2020-04-09 02:17:14 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|