|
12 | 12 |
|
13 | 13 | <groupId>com.thycotic.secrets</groupId>
|
14 | 14 | <artifactId>tss-sdk-java</artifactId>
|
15 |
| - <version>1.0-SNAPSHOT</version> |
| 15 | + <version>1.0</version> |
16 | 16 | <name>tss-sdk-java</name>
|
17 | 17 | <description>The Thycotic Secret Server Java SDK</description>
|
18 | 18 |
|
|
26 | 26 |
|
27 | 27 | <distributionManagement>
|
28 | 28 | <snapshotRepository>
|
29 |
| - <id>sonatype-nexus-snapshots</id> |
30 |
| - <name>Sonatype Nexus Snapshots</name> |
| 29 | + <id>ossrh</id> |
31 | 30 | <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
32 | 31 | </snapshotRepository>
|
33 | 32 | <repository>
|
34 |
| - <id>sonatype-nexus-staging</id> |
35 |
| - <name>Nexus Release Repository</name> |
36 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
| 33 | + <id>ossrh</id> |
| 34 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
37 | 35 | </repository>
|
38 | 36 | </distributionManagement>
|
39 | 37 |
|
|
110 | 108 |
|
111 | 109 | <build>
|
112 | 110 | <plugins>
|
| 111 | + <plugin> |
| 112 | + <groupId>org.sonatype.plugins</groupId> |
| 113 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 114 | + <version>1.6.7</version> |
| 115 | + <extensions>true</extensions> |
| 116 | + <configuration> |
| 117 | + <serverId>ossrh</serverId> |
| 118 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 119 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 120 | + </configuration> |
| 121 | + </plugin> |
113 | 122 | <plugin>
|
114 | 123 | <groupId>org.apache.maven.plugins</groupId>
|
115 | 124 | <artifactId>maven-source-plugin</artifactId>
|
116 | 125 | <version>2.2.1</version>
|
117 | 126 | <executions>
|
118 | 127 | <execution>
|
119 |
| - <id>attach-sources</id> |
120 |
| - <goals> |
121 |
| - <goal>jar-no-fork</goal> |
122 |
| - </goals> |
| 128 | + <id>attach-sources</id> |
| 129 | + <goals> |
| 130 | + <goal>jar-no-fork</goal> |
| 131 | + </goals> |
123 | 132 | </execution>
|
124 | 133 | </executions>
|
125 | 134 | </plugin>
|
126 | 135 | <plugin>
|
127 | 136 | <groupId>org.apache.maven.plugins</groupId>
|
128 | 137 | <artifactId>maven-javadoc-plugin</artifactId>
|
129 | 138 | <version>2.9.1</version>
|
130 |
| - <configuration> |
131 |
| - <source>8</source> |
132 |
| - </configuration> |
133 | 139 | <executions>
|
134 | 140 | <execution>
|
135 |
| - <id>attach-javadocs</id> |
136 |
| - <goals> |
137 |
| - <goal>jar</goal> |
138 |
| - </goals> |
| 141 | + <id>attach-javadocs</id> |
| 142 | + <goals> |
| 143 | + <goal>jar</goal> |
| 144 | + </goals> |
139 | 145 | </execution>
|
140 | 146 | </executions>
|
141 | 147 | </plugin>
|
| 148 | + <plugin> |
| 149 | + <groupId>org.apache.maven.plugins</groupId> |
| 150 | + <artifactId>maven-gpg-plugin</artifactId> |
| 151 | + <version>1.5</version> |
| 152 | + <executions> |
| 153 | + <execution> |
| 154 | + <id>sign-artifacts</id> |
| 155 | + <phase>verify</phase> |
| 156 | + <goals> |
| 157 | + <goal>sign</goal> |
| 158 | + </goals> |
| 159 | + <configuration> |
| 160 | + <keyname>${gpg.keyname}</keyname> |
| 161 | + <passphraseServerId>${gpg.keyname}</passphraseServerId> |
| 162 | + </configuration> |
| 163 | + </execution> |
| 164 | + </executions> |
| 165 | + </plugin> |
142 | 166 | <plugin>
|
143 | 167 | <groupId>org.apache.maven.plugins</groupId>
|
144 | 168 | <artifactId>maven-release-plugin</artifactId>
|
|
0 commit comments