Skip to content

Commit 4d4f309

Browse files
committed
Update the artifact id for the Java Function Framework and add some clauses for Maven Central..
PiperOrigin-RevId: 292458605
1 parent 2cf2699 commit 4d4f309

File tree

3 files changed

+34
-5
lines changed

3 files changed

+34
-5
lines changed

invoker/core/pom.xml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
<project>
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">
22
<modelVersion>4.0.0</modelVersion>
33

44
<parent>
55
<groupId>com.google.cloud.functions.invoker</groupId>
66
<artifactId>java-function-invoker-parent</artifactId>
7-
<version>1.0.0-alpha-1</version>
7+
<version>1.0.0-alpha-2-rc1-SNAPSHOT</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>
1111
<artifactId>java-function-invoker</artifactId>
12-
<version>1.0.0-alpha-1</version>
12+
<version>1.0.0-alpha-2-rc1-SNAPSHOT</version>
1313
<name>GCF Java Invoker</name>
1414
<description>
1515
Application that invokes a GCF Java function. This application is a
@@ -22,6 +22,21 @@
2222
<junit.jupiter.version>5.3.2</junit.jupiter.version>
2323
</properties>
2424

25+
<licenses>
26+
<license>
27+
<name>Apache License, Version 2.0</name>
28+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
29+
<distribution>repo</distribution>
30+
</license>
31+
</licenses>
32+
33+
<scm>
34+
<connection>scm:git:https://github.com/GoogleCloudPlatform/functions-framework-java.git</connection>
35+
<developerConnection>scm:git:[email protected]:GoogleCloudPlatform/functions-framework-java.git</developerConnection>
36+
<url>https://github.com/GoogleCloudPlatform/functions-framework-java</url>
37+
<tag>HEAD</tag>
38+
</scm>
39+
2540
<dependencies>
2641
<dependency>
2742
<groupId>com.google.cloud.functions</groupId>

invoker/pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,28 @@
11
<project>
22
<modelVersion>4.0.0</modelVersion>
3+
<parent>
4+
<groupId>org.sonatype.oss</groupId>
5+
<artifactId>oss-parent</artifactId>
6+
<version>9</version>
7+
</parent>
8+
39
<groupId>com.google.cloud.functions.invoker</groupId>
410
<artifactId>java-function-invoker-parent</artifactId>
5-
<version>1.0.0-alpha-1</version>
11+
<version>1.0.0-alpha-2-rc1-SNAPSHOT</version>
612
<packaging>pom</packaging>
713
<name>GCF Java Invoker Parent</name>
814
<description>
915
Parent POM for the GCF Java Invoker. The project is structured like this so
1016
that we can have modules that build jar files for use in tests.
1117
</description>
18+
<url>https://github.com/GoogleCloudPlatform/functions-framework-java/tree/master/invoker</url>
19+
20+
<scm>
21+
<url>http://github.com/GoogleCloudPlatform/functions-framework-java</url>
22+
<connection>scm:git:git://github.com/GoogleCloudPlatform/functions-framework-java.git</connection>
23+
<developerConnection>scm:git:ssh://[email protected]/GoogleCloudPlatform/functions-framework-java.git</developerConnection>
24+
<tag>HEAD</tag>
25+
</scm>
1226

1327
<modules>
1428
<module>core</module>

invoker/testfunction/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.cloud.functions.invoker</groupId>
66
<artifactId>java-function-invoker-parent</artifactId>
7-
<version>1.0.0-alpha-1</version>
7+
<version>1.0.0-alpha-2-rc1-SNAPSHOT</version>
88
</parent>
99

1010
<groupId>com.google.cloud.functions.invoker</groupId>

0 commit comments

Comments
 (0)