Host your maven artifacts using Google Cloud Storage
If you use Google Cloud and you use Java for your projects then Google Cloud Storage is a great place to host your teams artifacts.
It is easy to setup and pretty cheap. Also it is much simpler than setting one of the existing repository options (jfrog, nexus, archiva etc) if you are not particularly interested in their features.
To get started you need to specify a maven wagon which supports google cloud storage. We will use the Google storage wagon.
Let’s get started by creating a maven project
mvn archetype:generate -DgroupId=com.test.apps -DartifactId=GoogleWagonTest -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
We are going to add a simple service.
package com.test.apps; public class HelloService { public String sayHello() { return "Hello"; } }
Then we are going to add the maven wagon which will upload and fetch our binaries to the google cloud storage.
<build> <extensions> <extension> <groupId>com.gkatzioura.maven.cloud</groupId> <artifactId>google-storage-wagon</artifactId> <version>1.0</version> </extension> </extensions> </build>
Then we shall create the google cloud storage bucket which will host our artifacts.
Our bucket shall be called mavenrepository
Now that we have set up our bucket in google we shall set the distribution management on our maven project.
<distributionManagement> <snapshotRepository> <id>my-repo-bucket-snapshot</id> <url>gs://mavenrepository/snapshot</url> </snapshotRepository> <repository> <id>my-repo-bucket-release</id> <url>gs://mavenrepository/release</url> </repository> </distributionManagement>
From the maven documentation
Where as the repositories element specifies in the POM the location and manner in which Maven may download remote artifacts for use by the current project, distributionManagement specifies where (and how) this project will get to a remote repository when it is deployed. The repository elements will be used for snapshot distribution if the snapshotRepository is not defined.
The next step is the most crucial and this has to to do with authenticating to google cloud.
You need to have the gcloud command line setup in your system and you must issue a login
‘gcloud auth login –brief’ with an account that has access to the bucket we created previously.
The other way is to use the GOOGLE_APPLICATION_CREDENTIALS environmental variable. You can use this GOOGLE_APPLICATION_CREDENTIALS in order to set the path to your google application credentials file.
The credentials file should also be able to access the bucket we created previously.
And now the easiest part which is deploying.
mvn deploy
Now since your artifact has been deployed you can use it in another repo by specifying your repository and your wagon.
<repositories> <repository> <id>my-repo-bucket-snapshot</id> <url>gs://mavenrepository/snapshot</url> </repository> <repository> <id>my-repo-bucket-release</id> <url>gs://mavenrepository/release</url> </repository> </repositories> <build> <extensions> <extension> <groupId>com.gkatzioura.maven.cloud</groupId> <artifactId>google-storage-wagon</artifactId> <version>1.0</version> </extension> </extensions> </build>
That’s it! Next thing you know, your artifact will be downloaded by maven through google cloud storage and used as a dependency in your new project.
Published on Java Code Geeks with permission by Emmanouil Gkatziouras, partner at our JCG program. See the original article here: Host your maven artifacts using Google Cloud Storage Opinions expressed by Java Code Geeks contributors are their own. |