|
22 | 22 | ~ SOFTWARE. |
23 | 23 | --> |
24 | 24 |
|
25 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
26 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
27 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 25 | +<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"> |
28 | 26 |
|
29 | 27 | <modelVersion>4.0.0</modelVersion> |
30 | 28 |
|
31 | 29 | <groupId>com.ginsberg</groupId> |
32 | 30 | <artifactId>java-timestream</artifactId> |
33 | 31 | <description>A set of builders that create streams of java.time objects</description> |
34 | | - <version>1.0-SNAPSHOT</version> |
| 32 | + <url>https://github.com/tginsberg/java-timestream</url> |
| 33 | + <version>1.0.0</version> |
35 | 34 | <packaging>jar</packaging> |
36 | 35 |
|
| 36 | + <issueManagement> |
| 37 | + <url>https://github.com/tginsberg/java-timestream/issues</url> |
| 38 | + <system>GitHub Issues</system> |
| 39 | + </issueManagement> |
| 40 | + |
| 41 | + <scm> |
| 42 | + <url>https://github.com/tginsberg/java-timestream</url> |
| 43 | + <connection>scm:git:git://github.com/tginsberg/java-timestream.git</connection> |
| 44 | + <developerConnection>scm:git:git@github.com:tginsberg/java-timestream.git</developerConnection> |
| 45 | + <tag>HEAD</tag> |
| 46 | + </scm> |
| 47 | + |
| 48 | + <developers> |
| 49 | + <developer> |
| 50 | + <name>Todd Ginsberg</name> |
| 51 | + <email>todd@ginsberg.com</email> |
| 52 | + <url>https://github.com/tginsberg/</url> |
| 53 | + <id>tginsberg</id> |
| 54 | + </developer> |
| 55 | + </developers> |
| 56 | + |
37 | 57 | <licenses> |
38 | 58 | <license> |
39 | 59 | <name>MIT License</name> |
|
47 | 67 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
48 | 68 | </properties> |
49 | 69 |
|
| 70 | + <distributionManagement> |
| 71 | + <snapshotRepository> |
| 72 | + <id>ossrh</id> |
| 73 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 74 | + </snapshotRepository> |
| 75 | + <repository> |
| 76 | + <id>ossrh</id> |
| 77 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 78 | + </repository> |
| 79 | + </distributionManagement> |
| 80 | + |
50 | 81 | <build> |
51 | 82 | <plugins> |
52 | 83 | <plugin> |
|
70 | 101 | <goals>deploy</goals> |
71 | 102 | </configuration> |
72 | 103 | </plugin> |
| 104 | + |
| 105 | + <plugin> |
| 106 | + <groupId>org.sonatype.plugins</groupId> |
| 107 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 108 | + <version>1.6.7</version> |
| 109 | + <extensions>true</extensions> |
| 110 | + <configuration> |
| 111 | + <serverId>ossrh</serverId> |
| 112 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 113 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 114 | + </configuration> |
| 115 | + </plugin> |
| 116 | + |
73 | 117 | </plugins> |
74 | 118 | </build> |
75 | 119 |
|
| 120 | + <profiles> |
| 121 | + <profile> |
| 122 | + <id>release</id> |
| 123 | + <build> |
| 124 | + <plugins> |
| 125 | + <plugin> |
| 126 | + <groupId>org.apache.maven.plugins</groupId> |
| 127 | + <artifactId>maven-source-plugin</artifactId> |
| 128 | + <version>3.0.1</version> |
| 129 | + <executions> |
| 130 | + <execution> |
| 131 | + <id>attach-sources</id> |
| 132 | + <goals> |
| 133 | + <goal>jar-no-fork</goal> |
| 134 | + </goals> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + |
| 139 | + <plugin> |
| 140 | + <groupId>org.apache.maven.plugins</groupId> |
| 141 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 142 | + <version>2.10.4</version> |
| 143 | + <executions> |
| 144 | + <execution> |
| 145 | + <id>attach-javadocs</id> |
| 146 | + <goals> |
| 147 | + <goal>jar</goal> |
| 148 | + </goals> |
| 149 | + </execution> |
| 150 | + </executions> |
| 151 | + </plugin> |
| 152 | + |
| 153 | + <plugin> |
| 154 | + <groupId>org.apache.maven.plugins</groupId> |
| 155 | + <artifactId>maven-gpg-plugin</artifactId> |
| 156 | + <version>1.6</version> |
| 157 | + <executions> |
| 158 | + <execution> |
| 159 | + <id>sign-artifacts</id> |
| 160 | + <phase>verify</phase> |
| 161 | + <goals> |
| 162 | + <goal>sign</goal> |
| 163 | + </goals> |
| 164 | + </execution> |
| 165 | + </executions> |
| 166 | + </plugin> |
| 167 | + |
| 168 | + </plugins> |
| 169 | + </build> |
| 170 | + </profile> |
| 171 | + </profiles> |
| 172 | + |
76 | 173 | <dependencies> |
77 | 174 | <!-- Test dependencies --> |
78 | 175 | <dependency> |
|
0 commit comments