Skip to content

Commit

Permalink
publish Bill of Materials POMs (#877)
Browse files Browse the repository at this point in the history
  • Loading branch information
Roiocam committed Apr 16, 2024
1 parent 54cd818 commit f9a9009
Show file tree
Hide file tree
Showing 23 changed files with 509 additions and 266 deletions.
3 changes: 2 additions & 1 deletion jetcache-anno-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
<artifactId>jetcache-parent</artifactId>
<groupId>com.alicp.jetcache</groupId>
<version>2.7.6-SNAPSHOT</version>
<relativePath>../jetcache-parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>jetcache-anno-api</artifactId>

</project>
</project>
3 changes: 2 additions & 1 deletion jetcache-anno/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<artifactId>jetcache-parent</artifactId>
<groupId>com.alicp.jetcache</groupId>
<version>2.7.6-SNAPSHOT</version>
<relativePath>../jetcache-parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -32,4 +33,4 @@
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
</project>
</project>
264 changes: 264 additions & 0 deletions jetcache-bom/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,264 @@
<?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.alicp.jetcache</groupId>
<artifactId>jetcache-bom</artifactId>
<version>2.7.6-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
<build-helper-maven-plugin.version>1.12</build-helper-maven-plugin.version>
<maven-help-plugin.version>3.2.0</maven-help-plugin.version>
<xml-maven-plugin.version>1.0.2</xml-maven-plugin.version>

<!--
<spring.framework.version>5.3.23</spring.framework.version>
<spring.boot.version>2.7.5</spring.boot.version>
<lettuce.version>6.1.10.RELEASE</lettuce.version>
-->

<spring.framework.version>6.0.11</spring.framework.version>
<spring.boot.version>3.1.3</spring.boot.version>
<lettuce.version>6.2.6.RELEASE</lettuce.version>

<jedis.version>4.3.2</jedis.version>
<redisson.version>3.18.0</redisson.version>

<!--
<spring.framework.version>5.2.4.RELEASE</spring.framework.version>
<spring.boot.version>2.2.5.RELEASE</spring.boot.version>
-->

<jackson.version>2.15.2</jackson.version>
<junit.version>5.9.3</junit.version>
<slf4j.version>2.0.9</slf4j.version>
<logback.version>1.4.11</logback.version>
</properties>

<dependencyManagement>
<dependencies>
<!-- jetcache -->
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-anno</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-anno-api</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-core</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-autoconfigure</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-starter-redis</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-starter-redis-lettuce</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-starter-redis-springdata</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-starter-redisson</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-redis</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-redis-lettuce</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-redis-springdata</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-redisson</artifactId>
<version>2.7.6-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${jackson.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.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>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.framework.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring.boot.version}</version>
</dependency>

<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.83</version>
</dependency>
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.45</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<version>2.4.14.Final</version>
</dependency>
<dependency>
<groupId>com.esotericsoftware</groupId>
<artifactId>kryo</artifactId>
<version>4.0.3</version>
</dependency>
<dependency>
<groupId>com.esotericsoftware.kryo</groupId>
<artifactId>kryo5</artifactId>
<version>5.5.0</version>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>2.9.3</version>
<!--3.0+ need java 11-->
</dependency>
</dependencies>
</dependencyManagement>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-help-plugin</artifactId>
<version>${maven-help-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xml-maven-plugin</artifactId>
<version>${xml-maven-plugin.version}</version>
</plugin>
</plugins>

</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-help-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<id>generate-effective-dependencies-pom</id>
<phase>generate-resources</phase>
<goals>
<goal>effective-pom</goal>
</goals>
<configuration>
<output>${project.build.directory}/effective-pom/jetcache-bom.xml</output>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/effective-pom/jetcache-bom.xml</file>
<type>effective-pom</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
3 changes: 2 additions & 1 deletion jetcache-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<artifactId>jetcache-parent</artifactId>
<groupId>com.alicp.jetcache</groupId>
<version>2.7.6-SNAPSHOT</version>
<relativePath>../jetcache-parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -57,4 +58,4 @@
</dependency>

</dependencies>
</project>
</project>

0 comments on commit f9a9009

Please sign in to comment.