Skip to content

Commit

Permalink
Add SCM configuration to pom.xml
Browse files Browse the repository at this point in the history
This commit introduces the SCM configuration block to the pom.xml file, specifying connection details for the project's GitHub repository. This change supports better project version control and easier collaboration.
  • Loading branch information
Konstantin Pavlov authored and Konstantin Pavlov committed Nov 3, 2024
1 parent 29e4695 commit a2b7071
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,13 @@
</plugins>
</build>

<scm>
<connection>scm:git:git://github.com/kpavlov/langchain4j-kotlin.git</connection>
<developerConnection>scm:git:ssh://github.com/kpavlov/langchain4j-kotlin.git</developerConnection>
<url>https://github.com/kpavlov/langchain4j-kotlin/tree/main</url>
<tag>HEAD</tag>
</scm>

<repositories>
<repository>
<id>snapshot-repo</id>
Expand Down

0 comments on commit a2b7071

Please sign in to comment.