File tree Expand file tree Collapse file tree 2 files changed +44
-4
lines changed
src/main/tuple-generator/com/andrebreves/java/tuple Expand file tree Collapse file tree 2 files changed +44
-4
lines changed Original file line number Diff line number Diff line change 27
27
</developers >
28
28
29
29
<scm >
30
- <url >http ://github.com/andrebreves/java-tuple/tree/master </url >
30
+ <url >https ://github.com/andrebreves/java-tuple.git </url >
31
31
</scm >
32
32
33
33
<properties >
46
46
</dependency >
47
47
</dependencies >
48
48
49
+ <distributionManagement >
50
+ <snapshotRepository >
51
+ <id >ossrh</id >
52
+ <url >https://oss.sonatype.org/content/repositories/snapshots/</url >
53
+ </snapshotRepository >
54
+ <repository >
55
+ <id >ossrh</id >
56
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
57
+ </repository >
58
+ </distributionManagement >
59
+
49
60
<build >
50
61
51
62
<!-- Compile the source code generator -->
159
170
</executions >
160
171
</plugin >
161
172
173
+ <!-- GPG Signing -->
174
+ <plugin >
175
+ <groupId >org.apache.maven.plugins</groupId >
176
+ <artifactId >maven-gpg-plugin</artifactId >
177
+ <version >1.6</version >
178
+ <executions >
179
+ <execution >
180
+ <id >sign-artifacts</id >
181
+ <phase >verify</phase >
182
+ <goals >
183
+ <goal >sign</goal >
184
+ </goals >
185
+ </execution >
186
+ </executions >
187
+ </plugin >
188
+
189
+ <!-- Deploy -->
190
+ <!-- Verify staging artifacts in https://oss.sonatype.org/content/groups/staging/com/andrebreves/java/ -->
191
+ <!-- Release with mvn nexus-staging:release -->
192
+ <!-- Verify published artifacts in https://oss.sonatype.org/content/groups/public/com/andrebreves/java/ -->
193
+ <plugin >
194
+ <groupId >org.sonatype.plugins</groupId >
195
+ <artifactId >nexus-staging-maven-plugin</artifactId >
196
+ <version >1.6.7</version >
197
+ <extensions >true</extensions >
198
+ <configuration >
199
+ <serverId >ossrh</serverId >
200
+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
201
+ </configuration >
202
+ </plugin >
203
+
162
204
</plugins >
163
205
</build >
206
+
164
207
</project >
Original file line number Diff line number Diff line change 28
28
public class SourceGenerator {
29
29
30
30
public static void main (String [] args ) throws Exception {
31
- // TODO: publish on GitHub
32
- // TODO: publish on Maven Central
33
-
34
31
String kind = args [0 ];
35
32
int degrees = Integer .parseInt (args [1 ]);
36
33
String folder = args [2 ];
You can’t perform that action at this time.
0 commit comments