|
20 | 20 |
|
21 | 21 | <groupId>io.cdap.plugin</groupId> |
22 | 22 | <artifactId>google-cloud</artifactId> |
23 | | - <version>0.25.0</version> |
| 23 | + <version>0.25.0-SNAPSHOT</version> |
24 | 24 | <name>Google Cloud Plugins</name> |
25 | 25 | <packaging>jar</packaging> |
26 | 26 | <description>Plugins for Google Big Query</description> |
|
55 | 55 | <url>https://issues.cask.co/browse/CDAP</url> |
56 | 56 | </issueManagement> |
57 | 57 |
|
58 | | - <distributionManagement> |
59 | | - <repository> |
60 | | - <id>sonatype.release</id> |
61 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> |
62 | | - </repository> |
63 | | - <snapshotRepository> |
64 | | - <id>sonatype.snapshots</id> |
65 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
66 | | - </snapshotRepository> |
67 | | - </distributionManagement> |
| 58 | +<!-- <distributionManagement>--> |
| 59 | +<!-- <repository>--> |
| 60 | +<!-- <id>sonatype.release</id>--> |
| 61 | +<!-- <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>--> |
| 62 | +<!-- </repository>--> |
| 63 | +<!-- <snapshotRepository>--> |
| 64 | +<!-- <id>sonatype.snapshots</id>--> |
| 65 | +<!-- <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>--> |
| 66 | +<!-- </snapshotRepository>--> |
| 67 | +<!-- </distributionManagement>--> |
68 | 68 |
|
69 | 69 | <properties> |
70 | 70 | <jee.version>7</jee.version> |
|
118 | 118 | </dependencyManagement> |
119 | 119 |
|
120 | 120 | <repositories> |
121 | | - <repository> |
122 | | - <id>sonatype</id> |
123 | | - <url>https://oss.sonatype.org/content/groups/public</url> |
124 | | - <releases> |
125 | | - <enabled>true</enabled> |
126 | | - </releases> |
127 | | - <snapshots> |
128 | | - <enabled>false</enabled> |
129 | | - </snapshots> |
130 | | - </repository> |
| 121 | +<!-- <repository>--> |
| 122 | +<!-- <id>sonatype</id>--> |
| 123 | +<!-- <url>https://oss.sonatype.org/content/groups/public</url>--> |
| 124 | +<!-- <releases>--> |
| 125 | +<!-- <enabled>true</enabled>--> |
| 126 | +<!-- </releases>--> |
| 127 | +<!-- <snapshots>--> |
| 128 | +<!-- <enabled>false</enabled>--> |
| 129 | +<!-- </snapshots>--> |
| 130 | +<!-- </repository>--> |
131 | 131 | <repository> |
132 | 132 | <id>sonatype-snapshots</id> |
133 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 133 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
134 | 134 | <releases> |
135 | 135 | <enabled>false</enabled> |
136 | 136 | </releases> |
|
1151 | 1151 | </executions> |
1152 | 1152 | </plugin> |
1153 | 1153 |
|
1154 | | - <plugin> |
1155 | | - <groupId>org.apache.maven.plugins</groupId> |
1156 | | - <artifactId>maven-release-plugin</artifactId> |
1157 | | - <version>2.5.3</version> |
1158 | | - <configuration> |
1159 | | - <tag>v${releaseVersion}</tag> |
1160 | | - <tagNameFormat>v@{project.version}</tagNameFormat> |
1161 | | - <autoVersionSubmodules>true</autoVersionSubmodules> |
1162 | | - <!-- releaseProfiles configuration will actually force a Maven profile |
1163 | | - – the `releases` profile – to become active during the Release process. --> |
1164 | | - <releaseProfiles>releases</releaseProfiles> |
1165 | | - </configuration> |
1166 | | - </plugin> |
| 1154 | +<!-- <plugin>--> |
| 1155 | +<!-- <groupId>org.apache.maven.plugins</groupId>--> |
| 1156 | +<!-- <artifactId>maven-release-plugin</artifactId>--> |
| 1157 | +<!-- <version>2.5.3</version>--> |
| 1158 | +<!-- <configuration>--> |
| 1159 | +<!-- <tag>v${releaseVersion}</tag>--> |
| 1160 | +<!-- <tagNameFormat>v@{project.version}</tagNameFormat>--> |
| 1161 | +<!-- <autoVersionSubmodules>true</autoVersionSubmodules>--> |
| 1162 | +<!-- <!– releaseProfiles configuration will actually force a Maven profile--> |
| 1163 | +<!-- – the `releases` profile – to become active during the Release process. –>--> |
| 1164 | +<!-- <releaseProfiles>releases</releaseProfiles>--> |
| 1165 | +<!-- </configuration>--> |
| 1166 | +<!-- </plugin>--> |
1167 | 1167 |
|
1168 | 1168 | <!-- <plugin>--> |
1169 | 1169 | <!-- <groupId>org.sonatype.plugins</groupId>--> |
|
1175 | 1175 | <!-- <serverId>sonatype.release</serverId>--> |
1176 | 1176 | <!-- </configuration>--> |
1177 | 1177 | <!-- </plugin>--> |
| 1178 | + <plugin> |
| 1179 | + <groupId>org.sonatype.central</groupId> |
| 1180 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 1181 | + <version>0.8.0</version> |
| 1182 | + <extensions>true</extensions> |
| 1183 | + <configuration> |
| 1184 | + <publishingServerId>sonatype.release</publishingServerId> |
| 1185 | + <autoPublish>false</autoPublish> |
| 1186 | + </configuration> |
| 1187 | + </plugin> |
1178 | 1188 | </plugins> |
1179 | 1189 | </build> |
1180 | 1190 | </profile> |
|
0 commit comments