123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <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.keao.edu</groupId>
- <artifactId>edu-saas</artifactId>
- <version>1.0</version>
- <packaging>pom</packaging>
- <name>edu-saas</name>
- <url>http://maven.apache.org</url>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <spring-boot.version>2.1.6.RELEASE</spring-boot.version>
- <spring-cloud.version>Greenwich.RELEASE</spring-cloud.version>
- <zipkin.version>2.12.2</zipkin.version>
- <google.zxing.version>3.4.0</google.zxing.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.keao.edu</groupId>
- <artifactId>edu-common</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.keao.edu</groupId>
- <artifactId>edu-auth-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.keao.edu</groupId>
- <artifactId>edu-user-client-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.keao.edu</groupId>
- <artifactId>edu-im-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.keao.edu</groupId>
- <artifactId>edu-util</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.keao.edu</groupId>
- <artifactId>edu-datasource</artifactId>
- <version>1.0</version>
- </dependency>
-
- <dependency>
- <groupId>com.keao.edu</groupId>
- <artifactId>edu-thirdparty</artifactId>
- <version>1.0</version>
- </dependency>
-
- <dependency>
- <groupId>com.keao.edu</groupId>
- <artifactId>edu-user-biz</artifactId>
- <version>1.0</version>
- </dependency>
- <!--֧��Spring Boot 2.1.X -->
- <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.springframework.cloud</groupId>
- <artifactId>spring-cloud-dependencies</artifactId>
- <version>${spring-cloud.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- swagger-spring-boot -->
- <dependency>
- <groupId>com.spring4all</groupId>
- <artifactId>swagger-spring-boot-starter</artifactId>
- <version>1.9.0.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>1.1.10</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>1.3.2</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.social</groupId>
- <artifactId>spring-social-security</artifactId>
- <version>1.1.6.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>1.9.2</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>core</artifactId>
- <version>${google.zxing.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>javase</artifactId>
- <version>${google.zxing.version}</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>4.0.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.70</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.7</version>
- </dependency>
- <dependency>
- <groupId>com.vdurmont</groupId>
- <artifactId>emoji-java</artifactId>
- <version>5.1.1</version>
- </dependency>
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>swagger-bootstrap-ui</artifactId>
- <version>1.9.5</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
- <version>0.9.0.RELEASE</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <repositories>
- <repository>
- <id>spring-milestones</id>
- <name>Spring Milestones</name>
- <url>https://repo.spring.io/libs-milestone</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>sonatype-nexus-snapshots</id>
- <name>Sonatype Nexus Snapshots</name>
- <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <releases>
- <enabled>false</enabled>
- </releases>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>repository.spring.release</id>
- <name>Spring GA Repository</name>
- <url>https://repo.spring.io/plugins-release/</url>
- </pluginRepository>
- <pluginRepository>
- <id>jcenter-snapshots</id>
- <name>jcenter</name>
- <url>http://oss.jfrog.org/artifactory/oss-snapshot-local/</url>
- </pluginRepository>
- <pluginRepository>
- <id>jcenter-releases</id>
- <name>jcenter</name>
- <url>http://jcenter.bintray.com</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
- <build>
- <finalName>${project.name}</finalName>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- <excludes>
- <exclude>**/*.ttf</exclude>
- <exclude>**/*.ttc</exclude>
- </excludes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>false</filtering>
- <includes>
- <include>**/*.ttf</include>
- <include>**/*.ttc</include>
- </includes>
- </resource>
- </resources>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot.version}</version>
- <configuration>
- <finalName>${project.build.finalName}</finalName>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </pluginManagement>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.0</version>
- <configuration>
- <target>${maven.compiler.target}</target>
- <source>${maven.compiler.source}</source>
- <encoding>${project.build.sourceEncoding}</encoding>
- </configuration>
- </plugin>
- <plugin>
- <groupId>pl.project13.maven</groupId>
- <artifactId>git-commit-id-plugin</artifactId>
- <version>2.2.5</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <configuration>
- <encoding>UTF-8</encoding>
- <!-- 过滤后缀为pem、pfx的证书文件 -->
- <nonFilteredFileExtensions>
- <nonFilteredFileExtension>cer</nonFilteredFileExtension>
- <nonFilteredFileExtension>pem</nonFilteredFileExtension>
- <nonFilteredFileExtension>pfx</nonFilteredFileExtension>
- <nonFilteredFileExtension>ttc</nonFilteredFileExtension>
- <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
- <nonFilteredFileExtension>xls</nonFilteredFileExtension>
- <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
- </nonFilteredFileExtensions>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <modules>
- <module>edu-eureka</module>
- <module>edu-zuul</module>
- <module>edu-common</module>
- <module>edu-util</module>
- <module>edu-task</module>
- <module>edu-cms</module>
- <module>edu-user</module>
- <module>edu-auth</module>
- <module>edu-im</module>
- <module>edu-thirdparty</module>
- <module>edu-datasource</module>
- </modules>
- </project>
|