Skip to content

Commit

Permalink
styles: fix all the format mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
erasernoob committed Dec 28, 2024
1 parent 7f1ccf1 commit 095deec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
Copyright 2023-2024 the original author or authors.
Copyright 2024-2025 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -19,7 +19,6 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.alibaba.cloud.ai</groupId>
<artifactId>spring-ai-alibaba</artifactId>
Expand All @@ -31,11 +30,6 @@
<name>spring-ai-alibaba-starter-function-calling-googletranslate</name>
<description>Translate tool for Spring AI Alibaba</description>
<url>https://github.com/alibaba/spring-ai-alibaba</url>
<scm>
<url>https://github.com/alibaba/spring-ai-alibaba</url>
<connection>git://github.com/alibaba/spring-ai-alibaba.git</connection>
<developerConnection>[email protected]:alibaba/spring-ai-alibaba.git</developerConnection>
</scm>

<dependencies>

Expand All @@ -59,15 +53,11 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>

</dependencies>


<build>
<finalName>spring-ai-alibaba-plugin-googletranslate</finalName>
<finalName>spring-ai-alibaba-function-calling-googletranslate</finalName>
</build>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*/
@ConditionalOnClass({ GoogleTranslateService.class })
@EnableConfigurationProperties(GoogleTranslateProperties.class)
@ConditionalOnProperty(prefix = "spring.ai.alibaba.functioncalling.googletranlate", name = "enabled",
@ConditionalOnProperty(prefix = "spring.ai.alibaba.functioncalling.googletranslate", name = "enabled",
havingValue = "true")
public class GoogleTranslateAutoConfiguration {

Expand Down

0 comments on commit 095deec

Please sign in to comment.