|
36 | 36 | < developerConnection> [email protected]:spring-projects/spring-ai.git</ developerConnection> |
37 | 37 | </scm> |
38 | 38 |
|
| 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 | + |
39 | 69 | <properties> |
40 | 70 | <flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version> |
41 | 71 | </properties> |
|
1023 | 1053 |
|
1024 | 1054 | </dependencyManagement> |
1025 | 1055 |
|
| 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 | + |
1026 | 1099 | <build> |
1027 | 1100 | <plugins> |
1028 | 1101 | <plugin> |
|
1061 | 1134 | </plugins> |
1062 | 1135 | </build> |
1063 | 1136 |
|
| 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 | + |
1064 | 1164 | </project> |
0 commit comments