@@ -1029,6 +1029,97 @@ dependencies {
10291029 )
10301030 )
10311031
1032+ BuildUtils . addExternalDependency(
1033+ project,
1034+ new ExternalDependency (
1035+ " org.springframework.ai:spring-ai-starter-mcp-server-webmvc:${ springAiVersion} " ,
1036+ " spring-ai-starter-mcp-server-webmvc" ,
1037+ " spring-ai" ,
1038+ " https://github.com/spring-projects/spring-ai" ,
1039+ ExternalDependency . APACHE_2_LICENSE_NAME ,
1040+ ExternalDependency . APACHE_2_LICENSE_URL ,
1041+ " MPC Servlet"
1042+ )
1043+ )
1044+
1045+ BuildUtils . addExternalDependency(
1046+ project,
1047+ new ExternalDependency (
1048+ " org.springframework.ai:spring-ai-bom:${ springAiVersion} " ,
1049+ " spring-ai-bom" ,
1050+ " spring-ai" ,
1051+ " https://github.com/spring-projects/spring-ai" ,
1052+ ExternalDependency . APACHE_2_LICENSE_NAME ,
1053+ ExternalDependency . APACHE_2_LICENSE_URL ,
1054+ " MPC Servlet"
1055+ )
1056+ )
1057+
1058+ BuildUtils . addExternalDependency(
1059+ project,
1060+ new ExternalDependency (
1061+ " org.springframework.ai:spring-ai-starter-model-google-genai:${ springAiVersion} " ,
1062+ " spring-ai-starter-google-genai" ,
1063+ " spring-ai" ,
1064+ " https://github.com/spring-projects/spring-ai" ,
1065+ ExternalDependency . APACHE_2_LICENSE_NAME ,
1066+ ExternalDependency . APACHE_2_LICENSE_URL ,
1067+ " LLM Chat Client integration for Gemini"
1068+ )
1069+ )
1070+
1071+ BuildUtils . addExternalDependency(
1072+ project,
1073+ new ExternalDependency (
1074+ " org.springframework.ai:spring-ai-anthropic:${ springAiVersion} " ,
1075+ " spring-ai-anthropic" ,
1076+ " spring-ai" ,
1077+ " https://github.com/spring-projects/spring-ai" ,
1078+ ExternalDependency . APACHE_2_LICENSE_NAME ,
1079+ ExternalDependency . APACHE_2_LICENSE_URL ,
1080+ " LLM Chat Client integration for Claude"
1081+ )
1082+ )
1083+
1084+ BuildUtils . addExternalDependency(
1085+ project,
1086+ new ExternalDependency (
1087+ " org.springframework.ai:spring-ai-client-chat:${ springAiVersion} " ,
1088+ " spring-ai-client-chat" ,
1089+ " spring-ai" ,
1090+ " https://github.com/spring-projects/spring-ai" ,
1091+ ExternalDependency . APACHE_2_LICENSE_NAME ,
1092+ ExternalDependency . APACHE_2_LICENSE_URL ,
1093+ " LLM Chat Client"
1094+ )
1095+ )
1096+
1097+ BuildUtils . addExternalDependency(
1098+ project,
1099+ new ExternalDependency (
1100+ " org.springframework.ai:spring-ai-advisors-vector-store:${ springAiVersion} " ,
1101+ " spring-ai-advisors-vector-store" ,
1102+ " spring-ai" ,
1103+ " https://github.com/spring-projects/spring-ai" ,
1104+ ExternalDependency . APACHE_2_LICENSE_NAME ,
1105+ ExternalDependency . APACHE_2_LICENSE_URL ,
1106+ " Vector store integration"
1107+ )
1108+ )
1109+
1110+ BuildUtils . addExternalDependency(
1111+ project,
1112+ new ExternalDependency (
1113+ " org.springframework.ai:spring-ai-starter-model-google-genai-embedding:${ springAiVersion} " ,
1114+ " spring-ai-starter-model-google-genai-embedding" ,
1115+ " spring-ai" ,
1116+ " https://github.com/spring-projects/spring-ai" ,
1117+ ExternalDependency . APACHE_2_LICENSE_NAME ,
1118+ ExternalDependency . APACHE_2_LICENSE_URL ,
1119+ " Vector store integration"
1120+ )
1121+ )
1122+
10321123 jspImplementation files(project. tasks. jar)
10331124 jspImplementation apache, jackson, spring
10341125}
0 commit comments