Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto-generate BOM #88

Merged
merged 4 commits into from
Nov 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,38 @@
</executions>
</plugin>

<plugin>
<groupId>io.sundr</groupId>
<artifactId>sundr-maven-plugin</artifactId>
<version>0.200.0</version>
<executions>
<execution>
<inherited>false</inherited>
<goals>
<goal>generate-bom</goal>
</goals>
<configuration>
<boms>
<bom>
<artifactId>langchain4j-spring-boot-bom</artifactId>
langchain4j marked this conversation as resolved.
Show resolved Hide resolved
<name>LangChain4j Spring Boot:: BOM</name>
langchain4j marked this conversation as resolved.
Show resolved Hide resolved
<description>Bill of Materials POM for getting full, complete set of compatible versions of LangChain4j Spring Boot modules</description>
langchain4j marked this conversation as resolved.
Show resolved Hide resolved
<properties>
<skipStagingRepositoryClose>true</skipStagingRepositoryClose>
<sonar.skip>true</sonar.skip>
</properties>
<modules>
<excludes>
<exclude>*:langchain4j-spring-boot-tests</exclude>
</excludes>
</modules>
</bom>
</boms>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand All @@ -193,11 +225,13 @@
<developers>
<developer>
<id>deep-learning-dynamo</id>
<name>deep-learning-dynamo</name>
<email>[email protected]</email>
<url>https://github.com/deep-learning-dynamo</url>
</developer>
<developer>
<id>kuraleta</id>
<name>kuraleta</name>
<email>[email protected]</email>
<url>https://github.com/kuraleta</url>
</developer>
Expand All @@ -212,6 +246,7 @@
<repositories>
<repository>
<id>ossrh-snapshots</id>
<name>Sonatype Central Snapshots</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
Expand All @@ -222,6 +257,7 @@
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<name>Sonatype Central Snapshots</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
Expand Down