Anyone help me?
Any Suggestions?
I have a gradle project can we convert it into maven is it possible?
Does anyone have core spring videos?
Please i want code?
Anyone have real time interview question of java & spring boot?



Anyone help me?
<?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/maven-v4_0_0.xsd”>
<modelVersion>4.0.0</modelVersion>
<groupId>com.fresco.play</groupId>
<artifactId>maven-profile-explicit</artifactId>
<packaging>jar</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>maven-profile-explicit</name>
<!– Insert your configurations here –>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>id.package</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo message=”Packaged for environment: ${db.env}”/>
<echo message=”DB URL: ${db.url}”/>
<echo>DB Username: ${db.username}</echo>
<echo>DB Password: ${db.password}</echo>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<db.env>DEV</db.env>
<db.url>jdbc:mysql://localhost:3306/dev</db.url>
<db.username>devuser</db.username>
<db.password>devpwd</db.password>
</properties>
</profile>
<profile>
<id>qa</id>
<activation>
<property>
<name>env</name>
<value>qa</value>
</property>
</activation>
<properties>
<db.env>QA</db.env>
<db.url>jdbc:mysql://serv01:3306/qa</db.url>
<db.username>qauser</db.username>
<db.password>qapwd</db.password>
</properties>
</profile>
<profile>
<id>prod</id>
<activation>
<property>
<name>env</name>
<value>prod</value>
</property>
</activation>
<properties>
<db.env>PROD</db.env>
<db.url>jdbc:mysql://live01:3306/prod</db.url>
<db.username>produser</db.username>
<db.password>******</db.password>
</properties>
</profile>
</profiles>
</project>
I want to execute qa when I do something like this mvn package -Penv=qa
Any Suggestions?
Can anyone please help me with this
check what dependencies are there in gradle file add those dependencies into your maven file of new project
Anyone having idea how to login with google in spring boot
Where angular is used in front-end

Please i want code?




I’m not able to publish my website by GitHub….
Anyone Please Help me…
?
For preparation purpose


Do some CRUD operation project