I want to configure a simple Java EE 7 application in eclipse that is created using gradle. My current tool stack:
- Eclipse Java EE 4.5 with a design
- Gradle 2.5
- Websphere Liberty's Profile
Using Maven and Wildfly before, I basically did the following steps:
- mvn archetype: generate-DarchetypeGroupId = com.airhacks -DarchetypeArtifactId = javaee7-essentials-archetype -DarchetypeVersion = 1.2
- Create index.xhtml (facelet) in src / main / webapp
- Add faces-config.xml to src / main / webapp / WEB-INF
- In eclipse: setting up an application server (wildfly)
- In eclipse: imports an existing Maven project into a workspace
- In eclipse: deploying a new application to a server
How can I do the same with gradle?
source share