Giter Club home page Giter Club logo

maven-nexus-project's Introduction

Development Environemnt Project

DevelopmentEnvironemntSetupProject!

Project ToolBox 🧰
  • Git Git will be used to manage our application source code.
  • Github Github is a free and open source distributed VCS designed to handle everything from small to very large projects with speed and efficiency
  • Maven Maven will be used for the application packaging and building including running unit test cases
  • SonarQube SonarQube Catches bugs and vulnerabilities in your app, with thousands of automated Static Code Analysis rules.
  • Nexus Nexus Manage Binaries and build artifacts across your software supply chain
  • EC2 EC2 allows users to rent virtual computers (EC2) to run their own workloads and applications.

Configure Environments

  1. Create a GitHub Repository

  2. SonarQube

  3. Maven

  4. Nexus

Configure Nexus Repository

Series of tutorial code snippets for use #Maven publish tutorial steps Publishing artifact to Nexus snapshot and release repo using maven.

  1. Create a snapshot repo using nexus, or use default coming in out of the box. DEFAULT
  2. Create a release repo using nexus, or use default coming out of the box. DEFAULT
  3. Create a group repo having both release, snapshot and other third party repos. or use default coming out of the box.
  4. Download spring initializer project
  5. Go settings.xml under <MAVEN_INSTALL_LOCATION>\apache-maven-3.6.0\conf or C:\Users<USER_NAME>.m2 or mkdir ~/.m2
  6. Create/Move profiles named snapshot and release in settings.xml in ~/.m2 (can be done in pom.xml as well)
  7. Add server user name and pwd in setting.xml (Encrypted recommended).
  8. Edit pom.xml and add repository and snapshot repository in distribution management tag DEFAULT/DONE
  9. Mark id should match in step 7 with server id of settings.xml, UPDATE NEXUS IP
  10. Run the following maven/mvn commands to validate/package/deploy your app artifacts remotely
  • mvn validate (validate the project is correct and all necessary information is available.)
  • mvn compile (compile the source code of the project)
  • mvn test (run tests using a suitable unit testing framework. These tests should not require the code be packaged or deployed.)
  • mvn package (take the compiled code and package it in its distributable format, such as a WAR/JAR/EAR.)
  • mvn verify (run any checks to verify the package is valid and meets quality criteria.)
  • mvn install (install the package into the local repository, for use as a dependency in other projects locally.)
  • mvn deploy (done in an integration or release environment, copies the final package to the remote/SNAPSHOT repository for sharing with other developers and projects.)
  1. Change the version from 1.0-Snapshot to 1.0
  2. Run mvn deploy to deploy to Snapshot Repo or mvn clean deploy -P release, to deploy it to Release Repo

Maven Lifecycle Phases

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.