Skip to content

Commit

Permalink
added Deployment/target
Browse files Browse the repository at this point in the history
  • Loading branch information
daemonsets committed Apr 18, 2021
1 parent 69e8cfb commit 63282dd
Show file tree
Hide file tree
Showing 39 changed files with 1,096 additions and 0 deletions.
Binary file added Deployment/target/classes/.DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions Deployment/target/classes/META-INF/MANIFEST.MF
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

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
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>
8 changes: 8 additions & 0 deletions Deployment/target/classes/application.properties
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 added Deployment/target/classes/com/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
7 changes: 7 additions & 0 deletions Deployment/target/classes/data.sql
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.
Loading

0 comments on commit 63282dd

Please sign in to comment.