-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69e8cfb
commit 63282dd
Showing
39 changed files
with
1,096 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Manifest-Version: 1.0 | ||
Build-Jdk-Spec: 15 | ||
Implementation-Title: resume-portal | ||
Implementation-Version: 1.0.0 | ||
Implementation-Vendor: Pivotal Software, Inc. | ||
Main-Class: com.daemonsets.resumeportal.ResumePortalApplication | ||
Created-By: Maven Integration for Eclipse | ||
|
7 changes: 7 additions & 0 deletions
7
Deployment/target/classes/META-INF/maven/com.daemonsets/resume-portal/pom.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#Generated by Maven Integration for Eclipse | ||
#Sun Apr 04 14:50:42 EDT 2021 | ||
m2e.projectLocation=/Users/darora/eclipse-workspace/resume-portal | ||
m2e.projectName=resume-portal | ||
groupId=com.daemonsets | ||
artifactId=resume-portal | ||
version=1.0.0 |
83 changes: 83 additions & 0 deletions
83
Deployment/target/classes/META-INF/maven/com.daemonsets/resume-portal/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>2.3.1.RELEASE</version> | ||
<relativePath/> <!-- lookup parent from repository --> | ||
</parent> | ||
<groupId>com.daemonsets</groupId> | ||
<artifactId>resume-portal</artifactId> | ||
<version>1.0.0</version> | ||
<name>resume-portal</name> | ||
<description>Resume portal for Java Brains</description> | ||
|
||
<properties> | ||
<java.version>11</java.version> | ||
<start-class>com.daemonsets.resumeportal.ResumePortalApplication</start-class> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-data-jpa</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-security</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-thymeleaf</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-devtools</artifactId> | ||
<scope>runtime</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>mysql</groupId> | ||
<artifactId>mysql-connector-java</artifactId> | ||
<version>8.0.18</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.junit.vintage</groupId> | ||
<artifactId>junit-vintage-engine</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.security</groupId> | ||
<artifactId>spring-security-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.19.1</version> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
server.port=5000 | ||
spring.datasource.url=jdbc:mysql://localhost:6603/resume-portal?serverTimezone=America/Los_Angeles | ||
spring.datasource.username=root | ||
spring.datasource.password=password | ||
spring.jpa.database-platform=org.hibernate.dialect.MySQL55Dialect | ||
spring.jpa.hibernate.ddl-auto=create | ||
spring.datasource.initialization-mode=always | ||
|
Binary file not shown.
Binary file added
BIN
+5.93 KB
Deployment/target/classes/com/daemonsets/resumeportal/HomeController.class
Binary file not shown.
Binary file added
BIN
+2.78 KB
Deployment/target/classes/com/daemonsets/resumeportal/MyUserDetailsService.class
Binary file not shown.
Binary file added
BIN
+856 Bytes
Deployment/target/classes/com/daemonsets/resumeportal/ResumePortalApplication.class
Binary file not shown.
Binary file added
BIN
+3.02 KB
Deployment/target/classes/com/daemonsets/resumeportal/SecurityConfiguration.class
Binary file not shown.
Binary file added
BIN
+587 Bytes
Deployment/target/classes/com/daemonsets/resumeportal/UserProfileRepository.class
Binary file not shown.
Binary file added
BIN
+559 Bytes
Deployment/target/classes/com/daemonsets/resumeportal/UserRepository.class
Binary file not shown.
Binary file added
BIN
+2.44 KB
Deployment/target/classes/com/daemonsets/resumeportal/models/Education.class
Binary file not shown.
Binary file added
BIN
+3.55 KB
Deployment/target/classes/com/daemonsets/resumeportal/models/Job.class
Binary file not shown.
Binary file added
BIN
+2.82 KB
Deployment/target/classes/com/daemonsets/resumeportal/models/MyUserDetails.class
Binary file not shown.
Binary file added
BIN
+1.64 KB
Deployment/target/classes/com/daemonsets/resumeportal/models/User.class
Binary file not shown.
Binary file added
BIN
+4.09 KB
Deployment/target/classes/com/daemonsets/resumeportal/models/UserProfile.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
insert into user (id, user_name, password, active, roles) values | ||
(1, 'einstein', 'einstein', true, 'USER'), | ||
(2, 'newton', 'newton', true, 'USER'); | ||
|
||
insert into user_profile (id, user_name, theme, summary, first_name, last_name, email, phone, designation) values | ||
(1, 'einstein', 1, 'Developed the theory of relativity, one of the two pillars of modern physics. My work is also known for its influence on the philosophy of science.', 'Albert', 'Einstein', '[email protected]', '111-111-1111', 'Theoretical physicist'), | ||
(2, 'newton', 2, 'Widely recognised as one of the most influential scientists of all time and as a key figure in the scientific revolution', 'Isaac', 'Newton', '[email protected]', '222-222-2222', 'Mathematician, physicist, astronomer, theologian, and author'); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.