Skip to content

Commit

Permalink
Creating the 0.0.1 Release!
Browse files Browse the repository at this point in the history
  • Loading branch information
honnuanand committed Nov 28, 2023
1 parent b4c181f commit 414312a
Showing 1 changed file with 59 additions and 2 deletions.
61 changes: 59 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>io.clue2solve</groupId>
<artifactId>spring-cloud-aws-bedrock-starter</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<name>spring-cloud-aws-bedrock-starter</name>
<description>Spring Cloud Starter for AWS Bedrock</description>
<properties>
Expand Down Expand Up @@ -248,7 +248,64 @@
</image>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<keyname>B7C28EC76C4FF757CF89053BB1DCAB56D285ABFF</keyname>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.2</version>
<configuration>
<skip>false</skip>
<doclint>none</doclint>
<additionalOptions>-Xdoclint:all -Xdoclint:-missing</additionalOptions>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>

0 comments on commit 414312a

Please sign in to comment.