Skip to content

Commit 867bc2e

Browse files
committed
Add additional metadata to Spring AI BOM
Signed-off-by: Ilayaperumal Gopinathan <[email protected]>
1 parent 8c718ca commit 867bc2e

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed

spring-ai-bom/pom.xml

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,36 @@
3636
<developerConnection>[email protected]:spring-projects/spring-ai.git</developerConnection>
3737
</scm>
3838

39+
<organization>
40+
<name>Broadcom Inc.</name>
41+
<url>https://spring.io</url>
42+
</organization>
43+
44+
<issueManagement>
45+
<system>Github Issues</system>
46+
<url>https://github.com/spring-projects/spring-ai/issues</url>
47+
</issueManagement>
48+
<ciManagement>
49+
<system>Github Actions</system>
50+
<url>https://github.com/spring-projects/spring-ai/actions</url>
51+
</ciManagement>
52+
<distributionManagement>
53+
<snapshotRepository>
54+
<id>spring-snapshots</id>
55+
<url>https://repo.spring.io/libs-snapshot-local</url>
56+
<releases>
57+
<enabled>false</enabled>
58+
</releases>
59+
</snapshotRepository>
60+
</distributionManagement>
61+
<licenses>
62+
<license>
63+
<name>Apache 2.0</name>
64+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
65+
<distribution>repo</distribution>
66+
</license>
67+
</licenses>
68+
3969
<properties>
4070
<flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
4171
</properties>
@@ -1023,6 +1053,49 @@
10231053

10241054
</dependencyManagement>
10251055

1056+
<repositories>
1057+
<repository>
1058+
<name>Central Portal Snapshots</name>
1059+
<id>central-portal-snapshots</id>
1060+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
1061+
<releases>
1062+
<enabled>false</enabled>
1063+
</releases>
1064+
<snapshots>
1065+
<enabled>true</enabled>
1066+
</snapshots>
1067+
</repository>
1068+
<repository>
1069+
<id>maven-central</id>
1070+
<url>https://repo.maven.apache.org/maven2/</url>
1071+
<snapshots>
1072+
<enabled>true</enabled>
1073+
</snapshots>
1074+
<releases>
1075+
<enabled>true</enabled>
1076+
</releases>
1077+
</repository>
1078+
<repository>
1079+
<id>spring-snapshots</id>
1080+
<name>Spring Snapshots</name>
1081+
<url>https://repo.spring.io/snapshot</url>
1082+
<snapshots>
1083+
<enabled>true</enabled>
1084+
</snapshots>
1085+
<releases>
1086+
<enabled>false</enabled>
1087+
</releases>
1088+
</repository>
1089+
<repository>
1090+
<id>spring-milestones</id>
1091+
<name>Spring Milestones</name>
1092+
<url>https://repo.spring.io/milestone</url>
1093+
<snapshots>
1094+
<enabled>false</enabled>
1095+
</snapshots>
1096+
</repository>
1097+
</repositories>
1098+
10261099
<build>
10271100
<plugins>
10281101
<plugin>
@@ -1061,4 +1134,31 @@
10611134
</plugins>
10621135
</build>
10631136

1137+
<profiles>
1138+
<profile>
1139+
<id>artifactory-staging</id>
1140+
<distributionManagement>
1141+
<repository>
1142+
<id>spring-staging</id>
1143+
<url>https://repo.spring.io/libs-staging-local</url>
1144+
<snapshots>
1145+
<enabled>false</enabled>
1146+
</snapshots>
1147+
</repository>
1148+
</distributionManagement>
1149+
</profile>
1150+
<profile>
1151+
<id>artifactory-milestone</id>
1152+
<distributionManagement>
1153+
<repository>
1154+
<id>spring-milestones</id>
1155+
<url>https://repo.spring.io/libs-milestone-local</url>
1156+
<snapshots>
1157+
<enabled>false</enabled>
1158+
</snapshots>
1159+
</repository>
1160+
</distributionManagement>
1161+
</profile>
1162+
</profiles>
1163+
10641164
</project>

0 commit comments

Comments
 (0)