Skip to content

Atom #115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 20 commits into
base: local
Choose a base branch
from
Open

Atom #115

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
11 changes: 5 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
pipeline {

agent any
/*
tools {
maven "maven3"
}
*/
tools {
maven "MAVEN3"
jdk "JDK17"
}
environment {
NEXUS_VERSION = "nexus3"
NEXUS_PROTOCOL = "http"
NEXUS_URL = "172.31.40.209:8081"
NEXUS_URL = "IP:8081"
NEXUS_REPOSITORY = "vprofile-release"
NEXUS_REPO_ID = "vprofile-release"
NEXUS_CREDENTIAL_ID = "nexuslogin"
Expand Down
19 changes: 12 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Prerequisites
#
- JDK 11
- Maven 3

##

- JDK 21
- Maven 3.9
- MySQL 8

# Technologies
# Technologies

- JAKARTA
- Spring MVC
- Spring Security
- Spring Data JPA
Expand All @@ -15,11 +19,12 @@
- Memcached
- Rabbitmq
- ElasticSearch

# Database
Here,we used Mysql DB

Here,we used Mysql DB
sql dump file:

- /src/main/resources/db_backup.sql
- db_backup.sql file is a mysql dump file.we have to import this dump to mysql db server
- > mysql -u <user_name> -p accounts < db_backup.sql


Loading