Skip to content

Commit fcb0b79

Browse files
committed
duplicated maven properties in bom
1 parent 16af9d3 commit fcb0b79

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed

infobip-spring-data-bom/pom.xml

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,55 @@
77
<groupId>com.infobip</groupId>
88
<artifactId>infobip-spring-data-bom</artifactId>
99
<version>9.2.0-SNAPSHOT</version>
10+
<packaging>pom</packaging>
11+
12+
<name>Infobip Spring Data Querydsl</name>
13+
14+
<description>
15+
Infobip Spring Data Querydsl provides new functionality that enables the user to leverage the full power of Querydsl API on top of Spring Data repository infrastructure.
16+
</description>
17+
18+
<organization>
19+
<name>Infobip Ltd.</name>
20+
<url>https://www.infobip.com/</url>
21+
</organization>
22+
23+
<url>https://github.com/infobip/infobip-spring-data-querydsl</url>
24+
25+
<licenses>
26+
<license>
27+
<name>Apache License, Version 2.0</name>
28+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
29+
<distribution>repo</distribution>
30+
<comments>A business-friendly OSS license</comments>
31+
</license>
32+
</licenses>
33+
34+
<scm>
35+
<url>https://github.com/infobip/infobip-spring-data-querydsl.git</url>
36+
<connection>scm:git:git://github.com:infobip/infobip-spring-data-querydsl.git</connection>
37+
<developerConnection>scm:git:[email protected]:infobip/infobip-spring-data-querydsl.git</developerConnection>
38+
<tag>HEAD</tag>
39+
</scm>
40+
41+
<developers>
42+
<developer>
43+
<id>lpandzic</id>
44+
<name>Lovro Pandžić</name>
45+
<email>[email protected]</email>
46+
<organization>Infobip Ltd.</organization>
47+
</developer>
48+
<developer>
49+
<id>tstavinoha</id>
50+
<name>Tin Stavinoha</name>
51+
<email>[email protected]</email>
52+
<organization>Infobip Ltd.</organization>
53+
</developer>
54+
</developers>
55+
56+
<properties>
57+
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
58+
</properties>
1059

1160
<dependencyManagement>
1261
<dependencies>
@@ -58,4 +107,42 @@
58107
</dependencies>
59108
</dependencyManagement>
60109

110+
<profiles>
111+
<profile>
112+
<id>release-sign-artifacts</id>
113+
<activation>
114+
<property>
115+
<name>performRelease</name>
116+
<value>true</value>
117+
</property>
118+
</activation>
119+
<build>
120+
<plugins>
121+
<plugin>
122+
<groupId>org.apache.maven.plugins</groupId>
123+
<artifactId>maven-gpg-plugin</artifactId>
124+
<version>${maven-gpg-plugin.version}</version>
125+
<executions>
126+
<execution>
127+
<id>sign-artifacts</id>
128+
<phase>verify</phase>
129+
<goals>
130+
<goal>sign</goal>
131+
</goals>
132+
</execution>
133+
</executions>
134+
</plugin>
135+
</plugins>
136+
</build>
137+
</profile>
138+
</profiles>
139+
140+
<distributionManagement>
141+
<repository>
142+
<id>ossrh</id>
143+
<name>SonatypeReleases</name>
144+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
145+
</repository>
146+
</distributionManagement>
147+
61148
</project>

0 commit comments

Comments
 (0)