Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Y
yojana-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yogesh Verma
yojana-backend
Merge requests
!4
Can CRUD employee, credentials and implemented auth
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Can CRUD employee, credentials and implemented auth
yogesh/credential-employee-auth
into
master
Overview
0
Commits
3
Pipelines
0
Changes
17
Closed
Yogesh Verma
requested to merge
yogesh/credential-employee-auth
into
master
3 years ago
Overview
0
Commits
3
Pipelines
0
Changes
17
Expand
0
0
Merge request reports
Compare
master
version 1
3fb5be61
3 years ago
master (base)
and
latest version
latest version
3bbedcd4
3 commits,
3 years ago
version 1
3fb5be61
2 commits,
3 years ago
17 files
+
741
−
337
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
pom.xml
+
94
−
75
Options
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
ca.bcit.infosys
</groupId>
<artifactId>
comp4911-pms-backend
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<packaging>
war
</packaging>
<build>
<finalName>
comp4911-pms-backend
</finalName>
<plugins>
<plugin>
<groupId>
org.wildfly.plugins
</groupId>
<artifactId>
wildfly-maven-plugin
</artifactId>
<version>
2.0.1.Final
</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>
javax
</groupId>
<artifactId>
javaee-api
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.primefaces
</groupId>
<artifactId>
primefaces
</artifactId>
<version>
8.0
</version>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.1
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
ca.bcit.infosys
</groupId>
<artifactId>
comp4911-pms-backend
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<packaging>
war
</packaging>
<build>
<finalName>
comp4911-pms-backend
</finalName>
<plugins>
<plugin>
<groupId>
org.wildfly.plugins
</groupId>
<artifactId>
wildfly-maven-plugin
</artifactId>
<version>
2.0.1.Final
</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>
javax
</groupId>
<artifactId>
javaee-api
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.primefaces
</groupId>
<artifactId>
primefaces
</artifactId>
<version>
8.0
</version>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.1
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
commons-codec
</groupId>
<artifactId>
commons-codec
</artifactId>
<version>
1.15
</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!-- https://mvnrepository.com/artifact/javax/javaee-api -->
<dependency>
<groupId>
javax
</groupId>
<artifactId>
javaee-api
</artifactId>
<version>
8.0
</version>
<scope>
provided
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<failOnMissingWebXml>
false
</failOnMissingWebXml>
<maven.compiler.source>
1.8
</maven.compiler.source>
<maven.compiler.target>
1.8
</maven.compiler.target>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<profiles>
<profile>
<!-- When built in OpenShift the 'openshift' profile will be used when
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-annotations
</artifactId>
<version>
2.12.1
</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-annotations -->
<dependency>
<groupId>
org.hibernate
</groupId>
<artifactId>
hibernate-annotations
</artifactId>
<version>
3.5.6-Final
</version>
</dependency>
<dependency>
<groupId>
com.auth0
</groupId>
<artifactId>
java-jwt
</artifactId>
<version>
3.13.0
</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!-- https://mvnrepository.com/artifact/javax/javaee-api -->
<dependency>
<groupId>
javax
</groupId>
<artifactId>
javaee-api
</artifactId>
<version>
8.0
</version>
<scope>
provided
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<failOnMissingWebXml>
false
</failOnMissingWebXml>
<maven.compiler.source>
1.8
</maven.compiler.source>
<maven.compiler.target>
1.8
</maven.compiler.target>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<profiles>
<profile>
<!-- When built in OpenShift the 'openshift' profile will be used when
invoking mvn. -->
<!-- Use this profile for any OpenShift specific customization your app
<!-- Use this profile for any OpenShift specific customization your app
will need. -->
<!-- By default that is to put the resulting archive into the 'deployments'
<!-- By default that is to put the resulting archive into the 'deployments'
folder. -->
<!-- http://maven.apache.org/guides/mini/guide-building-for-different-environments.html -->
<id>
openshift
</id>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-war-plugin
</artifactId>
<version>
2.3
</version>
<configuration>
<failOnMissingWebXml>
false
</failOnMissingWebXml>
<outputDirectory>
target
</outputDirectory>
<warName>
ROOT
</warName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- http://maven.apache.org/guides/mini/guide-building-for-different-environments.html -->
<id>
openshift
</id>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-war-plugin
</artifactId>
<version>
2.3
</version>
<configuration>
<failOnMissingWebXml>
false
</failOnMissingWebXml>
<outputDirectory>
target
</outputDirectory>
<warName>
ROOT
</warName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Loading