Skip to content

Commit d1daed1

Browse files
committed
1.0.0
1 parent db0d4c0 commit d1daed1

1 file changed

Lines changed: 34 additions & 5 deletions

File tree

pom.xml

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<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/xsd/maven-4.0.0.xsd">
53
<modelVersion>4.0.0</modelVersion>
64

75
<groupId>org.example</groupId>
86
<artifactId>openapi-diff-models</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
7+
<version>1.0.0</version>
108

119
<parent>
1210
<groupId>org.sonatype.oss</groupId>
@@ -28,7 +26,7 @@
2826
<connection>scm:git:git://github.com/elibracha/openapi-diff-models.git</connection>
2927
<developerConnection>scm:git:git@github.com:elibracha/openapi-diff-models.git</developerConnection>
3028
<url>https://github.com/elibracha/openapi-diff-models</url>
31-
<tag>HEAD</tag>
29+
<tag>openapi-diff-models-1.0.0</tag>
3230
</scm>
3331

3432
<distributionManagement>
@@ -158,6 +156,37 @@
158156
</plugins>
159157
</build>
160158

159+
<profiles>
160+
<!-- GPG Signature on release -->
161+
<profile>
162+
<id>release-sign-artifacts</id>
163+
<activation>
164+
<property>
165+
<name>performRelease</name>
166+
<value>true</value>
167+
</property>
168+
</activation>
169+
<build>
170+
<plugins>
171+
<plugin>
172+
<groupId>org.apache.maven.plugins</groupId>
173+
<artifactId>maven-gpg-plugin</artifactId>
174+
<version>1.6</version>
175+
<executions>
176+
<execution>
177+
<id>sign-artifacts</id>
178+
<phase>verify</phase>
179+
<goals>
180+
<goal>sign</goal>
181+
</goals>
182+
</execution>
183+
</executions>
184+
</plugin>
185+
</plugins>
186+
</build>
187+
</profile>
188+
</profiles>
189+
161190
<dependencies>
162191
<dependency>
163192
<groupId>io.swagger.parser.v3</groupId>

0 commit comments

Comments
 (0)