|
15 | 15 | -->
|
16 | 16 | <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">
|
17 | 17 | <modelVersion>4.0.0</modelVersion>
|
| 18 | + <dependencies> |
| 19 | + <dependency> |
| 20 | + <groupId>io.cloudevents</groupId> |
| 21 | + <artifactId>cloudevents-api</artifactId> |
| 22 | + <version>2.3.0</version> |
| 23 | + <scope>compile</scope> |
| 24 | + </dependency> |
| 25 | + </dependencies> |
18 | 26 |
|
19 | 27 | <parent>
|
20 | 28 | <groupId>org.sonatype.oss</groupId>
|
21 | 29 | <artifactId>oss-parent</artifactId>
|
22 | 30 | <version>9</version>
|
23 | 31 | </parent>
|
24 | 32 |
|
25 |
| - <groupId>com.google.cloud.functions</groupId> |
| 33 | + <groupId>dev.openfunction.functions</groupId> |
26 | 34 | <artifactId>functions-framework-api</artifactId>
|
27 |
| - <version>1.0.5-SNAPSHOT</version> |
| 35 | + <version>1.0.0-SNAPSHOT</version> |
28 | 36 |
|
29 | 37 | <properties>
|
30 | 38 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
41 | 49 | </license>
|
42 | 50 | </licenses>
|
43 | 51 |
|
44 |
| - <scm> |
45 |
| - <connection>scm:git:https://github.com/GoogleCloudPlatform/functions-framework-java.git</connection> |
46 |
| - < developerConnection>scm:git: [email protected]:GoogleCloudPlatform/functions-framework-java.git</ developerConnection> |
47 |
| - <url>https://github.com/GoogleCloudPlatform/functions-framework-java</url> |
48 |
| - <tag>HEAD</tag> |
49 |
| - </scm> |
50 |
| - |
51 |
| - <dependencies> |
52 |
| - <dependency> |
53 |
| - <groupId>io.cloudevents</groupId> |
54 |
| - <artifactId>cloudevents-api</artifactId> |
55 |
| - <version>2.0.0.RC2</version> |
56 |
| - </dependency> |
57 |
| - </dependencies> |
58 |
| - |
59 | 52 | <build>
|
60 | 53 | <plugins>
|
61 | 54 | <plugin>
|
| 55 | + <groupId>org.apache.maven.plugins</groupId> |
62 | 56 | <artifactId>maven-compiler-plugin</artifactId>
|
63 | 57 | <version>${maven-compiler-plugin.version}</version>
|
64 | 58 | <configuration>
|
|
67 | 61 | </configuration>
|
68 | 62 | </plugin>
|
69 | 63 | <plugin>
|
| 64 | + <groupId>org.apache.maven.plugins</groupId> |
70 | 65 | <artifactId>maven-javadoc-plugin</artifactId>
|
71 | 66 | <version>${maven-javadoc-plugin.version}</version>
|
72 | 67 | </plugin>
|
|
99 | 94 | </execution>
|
100 | 95 | </executions>
|
101 | 96 | </plugin>
|
| 97 | + <plugin> |
| 98 | + <groupId>org.sonatype.plugins</groupId> |
| 99 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 100 | + <version>1.6.7</version> |
| 101 | + <extensions>true</extensions> |
| 102 | + <configuration> |
| 103 | + <serverId>sonatype-nexus-staging</serverId> |
| 104 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 105 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 106 | + </configuration> |
| 107 | + </plugin> |
| 108 | + <plugin> |
| 109 | + <groupId>org.apache.maven.plugins</groupId> |
| 110 | + <artifactId>maven-gpg-plugin</artifactId> |
| 111 | + <version>1.5</version> |
| 112 | + <executions> |
| 113 | + <execution> |
| 114 | + <id>sign-artifacts</id> |
| 115 | + <phase>verify</phase> |
| 116 | + <goals> |
| 117 | + <goal>sign</goal> |
| 118 | + </goals> |
| 119 | + </execution> |
| 120 | + </executions> |
| 121 | + </plugin> |
102 | 122 | </plugins>
|
103 | 123 | <pluginManagement>
|
104 | 124 | <plugins>
|
|
132 | 152 | <distributionManagement>
|
133 | 153 | <snapshotRepository>
|
134 | 154 | <id>sonatype-nexus-snapshots</id>
|
135 |
| - <name>Sonatype Nexus Snapshots</name> |
136 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 155 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
137 | 156 | </snapshotRepository>
|
138 | 157 | <repository>
|
139 | 158 | <id>sonatype-nexus-staging</id>
|
140 |
| - <name>Nexus Release Repository</name> |
141 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 159 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
142 | 160 | </repository>
|
143 | 161 | </distributionManagement>
|
144 |
| - <profiles> |
145 |
| - <profile> |
146 |
| - <id>sonatype-oss-release</id> |
147 |
| - <build> |
148 |
| - <plugins> |
149 |
| - <plugin> |
150 |
| - <groupId>org.apache.maven.plugins</groupId> |
151 |
| - <artifactId>maven-source-plugin</artifactId> |
152 |
| - <version>3.2.1</version> |
153 |
| - <executions> |
154 |
| - <execution> |
155 |
| - <id>attach-sources</id> |
156 |
| - <goals> |
157 |
| - <goal>jar-no-fork</goal> |
158 |
| - </goals> |
159 |
| - </execution> |
160 |
| - </executions> |
161 |
| - </plugin> |
162 |
| - <plugin> |
163 |
| - <groupId>org.apache.maven.plugins</groupId> |
164 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
165 |
| - <version>${maven-javadoc-plugin.version}</version> |
166 |
| - <executions> |
167 |
| - <execution> |
168 |
| - <id>attach-javadocs</id> |
169 |
| - <goals> |
170 |
| - <goal>jar</goal> |
171 |
| - </goals> |
172 |
| - </execution> |
173 |
| - </executions> |
174 |
| - </plugin> |
175 |
| - <plugin> |
176 |
| - <groupId>org.apache.maven.plugins</groupId> |
177 |
| - <artifactId>maven-gpg-plugin</artifactId> |
178 |
| - <version>1.6</version> |
179 |
| - <executions> |
180 |
| - <execution> |
181 |
| - <id>sign-artifacts</id> |
182 |
| - <phase>verify</phase> |
183 |
| - <goals> |
184 |
| - <goal>sign</goal> |
185 |
| - </goals> |
186 |
| - </execution> |
187 |
| - </executions> |
188 |
| - </plugin> |
189 |
| - </plugins> |
190 |
| - </build> |
191 |
| - </profile> |
192 |
| - </profiles> |
193 | 162 | </project>
|
0 commit comments