|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <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/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | | - <parent> |
5 | | - <groupId>com.qlangtech.tis</groupId> |
6 | | - <artifactId>tis-parent</artifactId> |
7 | | - <version>2.0.1</version> |
8 | | - </parent> |
9 | | - <groupId>com.gkatzioura.maven.cloud</groupId> |
| 4 | + <groupId>com.qlangtech.maven.cloud</groupId> |
| 5 | +<!-- <groupId>com.gkatzioura.maven.cloud</groupId>--> |
10 | 6 | <artifactId>cloud-storage-maven</artifactId> |
11 | 7 | <packaging>pom</packaging> |
12 | 8 | <version>2.3</version> |
13 | 9 |
|
14 | 10 | <name>Cloud Storage</name> |
15 | 11 | <description>The CloudStorage project enables you to use the storage options of cloud provides (Google Cloud) storage as maven repositories.</description> |
16 | | - <url>https://github.com/gkatzioura/CloudStorage</url> |
| 12 | + <url>https://github.com/qlangtech/CloudStorage</url> |
17 | 13 |
|
18 | 14 | <licenses> |
19 | 15 | <license> |
|
53 | 49 | <junit.version>4.12</junit.version> |
54 | 50 | <maven.plugin.api.version>3.0</maven.plugin.api.version> |
55 | 51 | <maven.plugin.annotations.version>3.4</maven.plugin.annotations.version> |
| 52 | + <releasesRepository>https://oss.sonatype.org/service/local/staging/deploy/maven2/</releasesRepository> |
| 53 | + <snapshotRepository>https://oss.sonatype.org/content/repositories/snapshots/</snapshotRepository> |
56 | 54 | </properties> |
57 | 55 |
|
58 | 56 | <!-- <distributionManagement>--> |
|
69 | 67 | <!-- <downloadUrl>https://oss.sonatype.org/content/groups/public/org/knowm/xchart</downloadUrl>--> |
70 | 68 | <!-- </distributionManagement>--> |
71 | 69 |
|
| 70 | + <distributionManagement> |
| 71 | + <repository> |
| 72 | + <id>releases</id> |
| 73 | + <url>${releasesRepository}</url> |
| 74 | + </repository> |
| 75 | + <snapshotRepository> |
| 76 | + <id>snapshots</id> |
| 77 | + <url>${snapshotRepository}</url> |
| 78 | + <uniqueVersion>true</uniqueVersion> |
| 79 | + </snapshotRepository> |
| 80 | + </distributionManagement> |
| 81 | + |
| 82 | + <profiles> |
| 83 | + <profile> |
| 84 | + <!--https://central.sonatype.org/pages/apache-maven.html--> |
| 85 | + <id>ossrh</id> |
| 86 | + <properties> |
| 87 | + |
| 88 | + <gpg.executable>gpg2</gpg.executable> |
| 89 | + <!-- |
| 90 | + <gpg.passphrase>the_pass_phrase</gpg.passphrase> |
| 91 | + --> |
| 92 | + </properties> |
| 93 | + <build> |
| 94 | + <plugins> |
| 95 | + <plugin> |
| 96 | + <groupId>org.sonatype.plugins</groupId> |
| 97 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 98 | + <version>1.6.7</version> |
| 99 | + <extensions>true</extensions> |
| 100 | + <configuration> |
| 101 | + <serverId>releases</serverId> |
| 102 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 103 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 104 | + </configuration> |
| 105 | + </plugin> |
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-gpg-plugin</artifactId> |
| 109 | + <version>1.5</version> |
| 110 | + <executions> |
| 111 | + <execution> |
| 112 | + <id>sign-artifacts</id> |
| 113 | + <phase>verify</phase> |
| 114 | + <goals> |
| 115 | + <goal>sign</goal> |
| 116 | + </goals> |
| 117 | + </execution> |
| 118 | + </executions> |
| 119 | + </plugin> |
| 120 | + <plugin> |
| 121 | + <groupId>org.apache.maven.plugins</groupId> |
| 122 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 123 | + <version>2.10.3</version> |
| 124 | + <configuration> |
| 125 | + <charset>UTF16</charset> |
| 126 | + <aggregate>true</aggregate> |
| 127 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 128 | + </configuration> |
| 129 | + <executions> |
| 130 | + <execution> |
| 131 | + <id>attach-javadocs</id> |
| 132 | + <goals> |
| 133 | + <goal>jar</goal> |
| 134 | + </goals> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + </plugins> |
| 139 | + </build> |
| 140 | + </profile> |
| 141 | + </profiles> |
| 142 | + |
72 | 143 | <build> |
73 | 144 | <plugins> |
74 | 145 | <plugin> |
|
132 | 203 | </build> |
133 | 204 |
|
134 | 205 | <modules> |
135 | | - <module>GoogleStorageWagon</module> |
136 | 206 | <module>CloudStorageCore</module> |
137 | | - <module>AzureStorageWagon</module> |
138 | | - <module>S3StorageWagon</module> |
| 207 | +<!-- <module>GoogleStorageWagon</module>--> |
| 208 | +<!-- <module>AzureStorageWagon</module>--> |
| 209 | +<!-- <module>S3StorageWagon</module>--> |
139 | 210 | <module>AliyunOSSStorageWagon</module> |
140 | 211 | </modules> |
141 | 212 |
|
|
0 commit comments