项目作者: linux-china

项目描述 :
Spring Platform IO BOM Contrib
高级语言: Java
项目地址: git://github.com/linux-china/platform-bom-contrib.git
创建时间: 2016-03-11T11:20:16Z
项目社区:https://github.com/linux-china/platform-bom-contrib

开源协议:

下载


platform-bom-contrib

Contrib for Spring IO Platform BOM

Why

Spring IO platform BOM now focuses on Java 7 compatible, and some dependencies are not included or upgraded because of Java 8 support only.
Now Java 8 is adopted by most developers, and platform-bom-contrib helps Java 8 developers to last version.

How to use?

Spring Boot Application

If your application is Spring Boot based, just use following code in your pom.xml:

  1. <dependencyManagement>
  2. <dependencies>
  3. <dependency>
  4. <groupId>com.github.linux-china</groupId>
  5. <artifactId>platform-bom-contrib</artifactId>
  6. <version>Cairo-SR9</version>
  7. <type>pom</type>
  8. <scope>import</scope>
  9. </dependency>
  10. </dependencies>
  11. </dependencyManagement>
Other Application
  1. <dependencyManagement>
  2. <dependencies>
  3. <dependency>
  4. <groupId>com.github.linux-china</groupId>
  5. <artifactId>platform-bom-contrib</artifactId>
  6. <version>Cairo-SR3</version>
  7. <type>pom</type>
  8. <scope>import</scope>
  9. </dependency>
  10. </dependencies>
  11. </dependencyManagement>

Base Dependencies

  • Spring: 5.2.x
  • Spring Security: 5.2.x
  • Spring Boot: 2.2.x
  • Spring Cloud: Hoxton.SR1
  • Spring Platform IO BOM: Brussels-RELEASE

New dependencies

Developer Notice

  • detect updates: Please use “mvn versions:display-dependency-updates > updates.txt” to get dependencies update information.
  • local install: mvn -DskipTests -pl . clean package install

References