Skip to content

Commit 3c5c865

Browse files
committed
adding oss information
1 parent c251ff4 commit 3c5c865

File tree

2 files changed

+58
-3
lines changed

2 files changed

+58
-3
lines changed

Diff for: function-maven-plugin/pom.xml

+57-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<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">
22
<modelVersion>4.0.0</modelVersion>
3-
3+
44
<groupId>com.google.cloud.functions</groupId>
55
<artifactId>function-maven-plugin</artifactId>
66
<packaging>maven-plugin</packaging>
@@ -10,6 +10,13 @@
1010
using the Java Functions Framework.</description>
1111
<url>http://maven.apache.org</url>
1212

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+
1320
<properties>
1421
<maven.compiler.release>8</maven.compiler.release>
1522
<maven.compiler.source>8</maven.compiler.source>
@@ -38,7 +45,7 @@
3845
<dependency>
3946
<groupId>com.google.cloud.functions.invoker</groupId>
4047
<artifactId>java-function-invoker</artifactId>
41-
<version>1.1.2-SNAPSHOT</version>
48+
<version>1.1.1</version>
4249
</dependency>
4350

4451
<dependency>
@@ -79,4 +86,52 @@
7986
</plugin>
8087
</plugins>
8188
</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>
82137
</project>

Diff for: invoker/conformance/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<plugin>
5353
<groupId>com.google.cloud.functions</groupId>
5454
<artifactId>function-maven-plugin</artifactId>
55-
<version>0.10.2-SNAPSHOT</version>
55+
<version>0.10.1</version>
5656
</plugin>
5757
</plugins>
5858
</pluginManagement>

0 commit comments

Comments
 (0)