Skip to content

Commit 0c18bb1

Browse files
pom.xml added
1 parent 99cc3c2 commit 0c18bb1

File tree

2 files changed

+42
-3
lines changed

2 files changed

+42
-3
lines changed

pom.xml

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
<version>1.2.0</version>
1010
<packaging>jar</packaging>
1111

12-
<name>Contentstack</name>
12+
13+
<name>contentstack-java</name>
1314
<description>Java SDK for Contentstack Content Delivery API, Contentstack is a headless CMS with an API-first approach</description>
1415
<url>http://www.contentstack.com/</url>
1516

@@ -81,6 +82,33 @@
8182
</plugin>
8283

8384

85+
<plugin>
86+
<groupId>org.apache.maven.plugins</groupId>
87+
<artifactId>maven-gpg-plugin</artifactId>
88+
<version>1.5</version>
89+
<executions>
90+
<execution>
91+
<id>sign-artifacts</id>
92+
<phase>verify</phase>
93+
<goals>
94+
<goal>sign</goal>
95+
</goals>
96+
</execution>
97+
</executions>
98+
</plugin>
99+
100+
<plugin>
101+
<groupId>org.sonatype.plugins</groupId>
102+
<artifactId>nexus-staging-maven-plugin</artifactId>
103+
<version>1.6.7</version>
104+
<extensions>true</extensions>
105+
<configuration>
106+
<serverId>ossrh</serverId>
107+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
108+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
109+
</configuration>
110+
</plugin>
111+
84112
</plugins>
85113
</build>
86114

@@ -107,8 +135,8 @@
107135

108136
<developers>
109137
<developer>
110-
<name>Shailesh Mishra</name>
111-
<email>shailesh.mishra@contentstack.com</email>
138+
<name>contentstack-java</name>
139+
<email>mobile@contentstack.com</email>
112140
<organization>contentstack</organization>
113141
<organizationUrl>https://www.contentstack.com/</organizationUrl>
114142
</developer>

profiles.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<profilesXml xmlns="http://maven.apache.org/PROFILES/1.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/PROFILES/1.0.0 http://maven.apache.org/xsd/profiles-1.0.0.xsd">
5+
<profiles>
6+
<profile>
7+
<id>***REMOVED***</id>
8+
9+
</profile>
10+
</profiles>
11+
</profilesXml>

0 commit comments

Comments
 (0)