|
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 | | - <parent> |
5 | | - <groupId>com.google.cloud.functions.invoker</groupId> |
6 | | - <artifactId>java-function-invoker-parent</artifactId> |
7 | | - <version>1.1.2-SNAPSHOT</version> |
8 | | - </parent> |
9 | | - |
10 | 4 | <groupId>com.google.cloud.functions</groupId> |
11 | 5 | <artifactId>function-maven-plugin</artifactId> |
12 | 6 | <packaging>maven-plugin</packaging> |
|
16 | 10 | using the Java Functions Framework.</description> |
17 | 11 | <url>http://maven.apache.org</url> |
18 | 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 | + |
19 | 20 | <properties> |
20 | 21 | <maven.compiler.release>8</maven.compiler.release> |
21 | 22 | <maven.compiler.source>8</maven.compiler.source> |
|
44 | 45 | <dependency> |
45 | 46 | <groupId>com.google.cloud.functions.invoker</groupId> |
46 | 47 | <artifactId>java-function-invoker</artifactId> |
47 | | - <version>1.1.2-SNAPSHOT</version> |
| 48 | + <version>1.1.1</version> |
48 | 49 | </dependency> |
49 | 50 |
|
50 | 51 | <dependency> |
|
85 | 86 | </plugin> |
86 | 87 | </plugins> |
87 | 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> |
88 | 137 | </project> |
0 commit comments