|
6 | 6 |
|
7 | 7 | <groupId>software.amazon.lambda.durable</groupId> |
8 | 8 | <artifactId>aws-durable-execution-sdk-java-parent</artifactId> |
9 | | - <version>0.5.0-SNAPSHOT</version> |
| 9 | + <version>0.5.0-beta</version> |
10 | 10 | <packaging>pom</packaging> |
11 | 11 |
|
12 | 12 | <name>AWS Lambda Durable Execution SDK Parent</name> |
13 | 13 | <description>Parent POM for AWS Lambda Durable Execution SDK and Examples</description> |
| 14 | + <url>https://github.com/aws/aws-lambda-java-durable-execution-sdk</url> |
| 15 | + |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>Apache License 2.0</name> |
| 19 | + <url>http://aws.amazon.com/apache2.0</url> |
| 20 | + <distribution>repo</distribution> |
| 21 | + </license> |
| 22 | + </licenses> |
| 23 | + |
| 24 | + <developers> |
| 25 | + <developer> |
| 26 | + <id>amazonwebservices</id> |
| 27 | + <organization>Amazon Web Services</organization> |
| 28 | + <organizationUrl>http://aws.amazon.com</organizationUrl> |
| 29 | + <roles> |
| 30 | + <role>developer</role> |
| 31 | + </roles> |
| 32 | + </developer> |
| 33 | + </developers> |
| 34 | + |
| 35 | + <scm> |
| 36 | + <url>https://github.com/aws/aws-lambda-java-durable-execution-sdk.git</url> |
| 37 | + </scm> |
14 | 38 |
|
15 | 39 | <modules> |
16 | 40 | <module>sdk</module> |
|
124 | 148 | </java> |
125 | 149 | </configuration> |
126 | 150 | </plugin> |
| 151 | + <plugin> |
| 152 | + <groupId>org.apache.maven.plugins</groupId> |
| 153 | + <artifactId>maven-gpg-plugin</artifactId> |
| 154 | + <version>3.2.8</version> |
| 155 | + </plugin> |
| 156 | + <plugin> |
| 157 | + <groupId>org.apache.maven.plugins</groupId> |
| 158 | + <artifactId>maven-source-plugin</artifactId> |
| 159 | + <version>3.3.1</version> |
| 160 | + </plugin> |
| 161 | + <plugin> |
| 162 | + <groupId>org.apache.maven.plugins</groupId> |
| 163 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 164 | + <version>3.11.2</version> |
| 165 | + <configuration> |
| 166 | + <doclint>none</doclint> |
| 167 | + </configuration> |
| 168 | + </plugin> |
127 | 169 | </plugins> |
128 | 170 | </pluginManagement> |
129 | 171 |
|
|
150 | 192 | <groupId>com.diffplug.spotless</groupId> |
151 | 193 | <artifactId>spotless-maven-plugin</artifactId> |
152 | 194 | </plugin> |
| 195 | + <!-- Flatten the POM so that we can store the oss info in parent POM --> |
| 196 | + <plugin> |
| 197 | + <groupId>org.codehaus.mojo</groupId> |
| 198 | + <artifactId>flatten-maven-plugin</artifactId> |
| 199 | + <version>1.7.3</version> |
| 200 | + <configuration> |
| 201 | + <flattenMode>oss</flattenMode> |
| 202 | + </configuration> |
| 203 | + <executions> |
| 204 | + <!-- enable flattening --> |
| 205 | + <execution> |
| 206 | + <id>flatten</id> |
| 207 | + <phase>process-resources</phase> |
| 208 | + <goals> |
| 209 | + <goal>flatten</goal> |
| 210 | + </goals> |
| 211 | + </execution> |
| 212 | + <!-- ensure proper cleanup --> |
| 213 | + <execution> |
| 214 | + <id>flatten.clean</id> |
| 215 | + <goals> |
| 216 | + <goal>clean</goal> |
| 217 | + </goals> |
| 218 | + </execution> |
| 219 | + </executions> |
| 220 | + </plugin> |
153 | 221 | </plugins> |
154 | 222 | </build> |
| 223 | + |
| 224 | + <profiles> |
| 225 | + <profile> |
| 226 | + <id>publishing</id> |
| 227 | + <build> |
| 228 | + <plugins> |
| 229 | + <plugin> |
| 230 | + <groupId>org.apache.maven.plugins</groupId> |
| 231 | + <artifactId>maven-gpg-plugin</artifactId> |
| 232 | + <executions> |
| 233 | + <execution> |
| 234 | + <id>sign-artifacts</id> |
| 235 | + <phase>verify</phase> |
| 236 | + <goals> |
| 237 | + <goal>sign</goal> |
| 238 | + </goals> |
| 239 | + </execution> |
| 240 | + </executions> |
| 241 | + </plugin> |
| 242 | + <plugin> |
| 243 | + <groupId>org.sonatype.central</groupId> |
| 244 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 245 | + <version>0.9.0</version> |
| 246 | + <extensions>true</extensions> |
| 247 | + <configuration> |
| 248 | + <serverId>central</serverId> |
| 249 | + <autoPublish>false</autoPublish> |
| 250 | + </configuration> |
| 251 | + </plugin> |
| 252 | + </plugins> |
| 253 | + </build> |
| 254 | + </profile> |
| 255 | + </profiles> |
155 | 256 | </project> |
0 commit comments