|
1 | 1 | <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/maven-v4_0_0.xsd">
|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 |
| - |
| 3 | + |
4 | 4 | <groupId>com.google.cloud.functions</groupId>
|
5 | 5 | <artifactId>function-maven-plugin</artifactId>
|
6 | 6 | <packaging>maven-plugin</packaging>
|
|
10 | 10 | using the Java Functions Framework.</description>
|
11 | 11 | <url>http://maven.apache.org</url>
|
12 | 12 |
|
| 13 | + <scm> |
| 14 | + <url>http://github.com/GoogleCloudPlatform/functions-framework-java</url> |
| 15 | + <connection>scm:git:git://github.com/GoogleCloudPlatform/functions-framework-java.git</connection> |
| 16 | + < developerConnection>scm:git:ssh:// [email protected]/GoogleCloudPlatform/functions-framework-java.git</ developerConnection> |
| 17 | + <tag>HEAD</tag> |
| 18 | + </scm> |
| 19 | + |
13 | 20 | <properties>
|
14 | 21 | <maven.compiler.release>8</maven.compiler.release>
|
15 | 22 | <maven.compiler.source>8</maven.compiler.source>
|
|
38 | 45 | <dependency>
|
39 | 46 | <groupId>com.google.cloud.functions.invoker</groupId>
|
40 | 47 | <artifactId>java-function-invoker</artifactId>
|
41 |
| - <version>1.1.2-SNAPSHOT</version> |
| 48 | + <version>1.1.1</version> |
42 | 49 | </dependency>
|
43 | 50 |
|
44 | 51 | <dependency>
|
|
79 | 86 | </plugin>
|
80 | 87 | </plugins>
|
81 | 88 | </build>
|
| 89 | + <distributionManagement> |
| 90 | + <snapshotRepository> |
| 91 | + <id>sonatype-nexus-snapshots</id> |
| 92 | + <name>Sonatype Nexus Snapshots</name> |
| 93 | + <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 94 | + </snapshotRepository> |
| 95 | + <repository> |
| 96 | + <id>sonatype-nexus-staging</id> |
| 97 | + <name>Nexus Release Repository</name> |
| 98 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 99 | + </repository> |
| 100 | + </distributionManagement> |
| 101 | + <profiles> |
| 102 | + <profile> |
| 103 | + <id>sonatype-oss-release</id> |
| 104 | + <build> |
| 105 | + <plugins> |
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-source-plugin</artifactId> |
| 109 | + <version>3.2.1</version> |
| 110 | + <executions> |
| 111 | + <execution> |
| 112 | + <id>attach-sources</id> |
| 113 | + <goals> |
| 114 | + <goal>jar-no-fork</goal> |
| 115 | + </goals> |
| 116 | + </execution> |
| 117 | + </executions> |
| 118 | + </plugin> |
| 119 | + <plugin> |
| 120 | + <groupId>org.apache.maven.plugins</groupId> |
| 121 | + <artifactId>maven-gpg-plugin</artifactId> |
| 122 | + <version>1.6</version> |
| 123 | + <executions> |
| 124 | + <execution> |
| 125 | + <id>sign-artifacts</id> |
| 126 | + <phase>verify</phase> |
| 127 | + <goals> |
| 128 | + <goal>sign</goal> |
| 129 | + </goals> |
| 130 | + </execution> |
| 131 | + </executions> |
| 132 | + </plugin> |
| 133 | + </plugins> |
| 134 | + </build> |
| 135 | + </profile> |
| 136 | + </profiles> |
82 | 137 | </project>
|
0 commit comments